We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b42cf93 commit 17a46dbCopy full SHA for 17a46db
lombok.config
@@ -1,3 +1,3 @@
1
lombok.addLombokGeneratedAnnotation = true
2
lombok.fieldDefaults.defaultPrivate = true
3
-lombok.fielddefaults.defaultfinal = true
+lombok.fielddefaults.defaultFinal = true
src/main/java/com/github/hrytsenko/jsondata/springboot/error/ServiceException.java
@@ -22,10 +22,6 @@ public class ServiceException extends RuntimeException {
22
23
String code;
24
25
- private ServiceException(String code) {
26
- this(code, null);
27
- }
28
-
29
private ServiceException(String code, Throwable cause) {
30
super(cause);
31
this.code = code;
0 commit comments