Skip to content

Commit

Permalink
Fix javdoc on lombok builder
Browse files Browse the repository at this point in the history
  • Loading branch information
jkschneider committed Sep 12, 2024
1 parent c91c113 commit 759dbd7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions lombok.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ lombok.addNullAnnotations = CUSTOM:org.openrewrite.internal.lang.NonNull:org.ope
lombok.copyableAnnotations += org.openrewrite.internal.lang.Nullable
lombok.copyableAnnotations += org.openrewrite.internal.lang.NonNull
lombok.anyConstructor.addConstructorProperties=true
lombok.builder.className=Builder
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,12 @@ public JavaVersionMigrationPlan(Recipe recipe) {
);
}

@Builder(builderClassName = "Builder")
@Builder
@Value
public static class Row {
public static class Builder {
}

@Column(displayName = "Has Java",
description = "Whether this is a Java repository at all.")
boolean hasJava;
Expand Down

0 comments on commit 759dbd7

Please sign in to comment.