File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
src/main/java/org/openrewrite/java/migrate/table Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ lombok.addNullAnnotations = CUSTOM:org.openrewrite.internal.lang.NonNull:org.ope
44lombok.copyableAnnotations += org.openrewrite.internal.lang.Nullable
55lombok.copyableAnnotations += org.openrewrite.internal.lang.NonNull
66lombok.anyConstructor.addConstructorProperties=true
7+ lombok.builder.className=Builder
Original file line number Diff line number Diff line change @@ -31,9 +31,12 @@ public JavaVersionMigrationPlan(Recipe recipe) {
3131 );
3232 }
3333
34- @ Builder ( builderClassName = "Builder" )
34+ @ Builder
3535 @ Value
3636 public static class Row {
37+ public static class Builder {
38+ }
39+
3740 @ Column (displayName = "Has Java" ,
3841 description = "Whether this is a Java repository at all." )
3942 boolean hasJava ;
You can’t perform that action at this time.
0 commit comments