Skip to content

Commit 6c8d03e

Browse files
Update src/main/java/org/openrewrite/java/migrate/lombok/NormalizeSetter.java
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7cf2266 commit 6c8d03e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/org/openrewrite/java/migrate/lombok/NormalizeSetter.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ public String getDescription() {
4848
"Limitations:\n" +
4949
" - If two methods in a class are effectively the same setter then one's name will be corrected and the others name will be left as it is.\n" +
5050
" - If the correct name for a method is already taken by another method then the name will not be corrected.\n" +
51-
" - Method name swaps or circular renaming within a class cannot be performed because the names block each other. " +
52-
"E.g. `int getFoo() { return ba; } int getBa() { return foo; }` stays as it is.";
51+
" - Method name swaps or circular renaming within a class cannot be performed because the names block each other.\n" +
5352
}
5453

5554
public static class MethodAcc {

0 commit comments

Comments
 (0)