Skip to content

Commit 759dbd7

Browse files
committed
Fix javdoc on lombok builder
1 parent c91c113 commit 759dbd7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

lombok.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ lombok.addNullAnnotations = CUSTOM:org.openrewrite.internal.lang.NonNull:org.ope
44
lombok.copyableAnnotations += org.openrewrite.internal.lang.Nullable
55
lombok.copyableAnnotations += org.openrewrite.internal.lang.NonNull
66
lombok.anyConstructor.addConstructorProperties=true
7+
lombok.builder.className=Builder

src/main/java/org/openrewrite/java/migrate/table/JavaVersionMigrationPlan.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)