Skip to content

Commit

Permalink
fix: Code review update (#17)
Browse files Browse the repository at this point in the history
Vitolo-Andrea authored Jul 17, 2024
1 parent 9465f32 commit 6ea15d7
Showing 2 changed files with 2 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/code-review.yml
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ on:
push:
branches:
- main
- release-*
pull_request:
types:
- opened
@@ -54,7 +55,7 @@ jobs:
-Dsonar.java.binaries=target/classes \
-Dsonar.junit.reportPaths=target/surefire-reports \
-Dsonar.coverage.jacoco.xmlReportPaths=target/site/jacoco/jacoco.xml \
-Dsonar.exclusions=**/enums/**,**/model/**,**/stub/**,**/dto/**,**/*Constant*,**/*Config.java,**/*Scheduler.java,**/*Application.java,**/src/test/**,**/Dummy*.java
-Dsonar.exclusions=**/configuration/**,**/enums/**,**/model/**,**/stub/**,**/dto/**,**/*Constant*,**/*Config.java,**/*Scheduler.java,**/*Application.java,**/src/test/**,**/Dummy*.java
- name: Fetch all branches
run: git fetch --all
Original file line number Diff line number Diff line change
@@ -8,13 +8,5 @@ public ClientExceptionNoBody(HttpStatus httpStatus, String message) {
super(httpStatus, message);
}

public ClientExceptionNoBody(HttpStatus httpStatus, String message, Throwable ex) {
super(httpStatus, message, ex);
}

public ClientExceptionNoBody(HttpStatus httpStatus, String message, boolean printStackTrace,
Throwable ex) {
super(httpStatus, message, printStackTrace, ex);
}
}

0 comments on commit 6ea15d7

Please sign in to comment.