Skip to content

Commit 17a46db

Browse files
committed
Minor improvements.
1 parent b42cf93 commit 17a46db

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

lombok.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
lombok.addLombokGeneratedAnnotation = true
22
lombok.fieldDefaults.defaultPrivate = true
3-
lombok.fielddefaults.defaultfinal = true
3+
lombok.fielddefaults.defaultFinal = true

src/main/java/com/github/hrytsenko/jsondata/springboot/error/ServiceException.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ public class ServiceException extends RuntimeException {
2222

2323
String code;
2424

25-
private ServiceException(String code) {
26-
this(code, null);
27-
}
28-
2925
private ServiceException(String code, Throwable cause) {
3026
super(cause);
3127
this.code = code;

0 commit comments

Comments
 (0)