Skip to content

Commit 6ea15d7

Browse files
fix: Code review update (#17)
1 parent 9465f32 commit 6ea15d7

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

.github/workflows/code-review.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- release-*
78
pull_request:
89
types:
910
- opened
@@ -54,7 +55,7 @@ jobs:
5455
-Dsonar.java.binaries=target/classes \
5556
-Dsonar.junit.reportPaths=target/surefire-reports \
5657
-Dsonar.coverage.jacoco.xmlReportPaths=target/site/jacoco/jacoco.xml \
57-
-Dsonar.exclusions=**/enums/**,**/model/**,**/stub/**,**/dto/**,**/*Constant*,**/*Config.java,**/*Scheduler.java,**/*Application.java,**/src/test/**,**/Dummy*.java
58+
-Dsonar.exclusions=**/configuration/**,**/enums/**,**/model/**,**/stub/**,**/dto/**,**/*Constant*,**/*Config.java,**/*Scheduler.java,**/*Application.java,**/src/test/**,**/Dummy*.java
5859
5960
- name: Fetch all branches
6061
run: git fetch --all

src/main/java/it/gov/pagopa/common/web/exception/ClientExceptionNoBody.java

-8
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,5 @@ public ClientExceptionNoBody(HttpStatus httpStatus, String message) {
88
super(httpStatus, message);
99
}
1010

11-
public ClientExceptionNoBody(HttpStatus httpStatus, String message, Throwable ex) {
12-
super(httpStatus, message, ex);
13-
}
14-
15-
public ClientExceptionNoBody(HttpStatus httpStatus, String message, boolean printStackTrace,
16-
Throwable ex) {
17-
super(httpStatus, message, printStackTrace, ex);
18-
}
1911
}
2012

0 commit comments

Comments
 (0)