You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.add(" - Does not offer any of the configuration keys listed in https://projectlombok.org/features/GetterSetter.")
61
-
.toString();
49
+
return"Convert trivial getter methods to `@Getter` annotations on their respective fields.\n\n" +
50
+
"Limitations:\n\n" +
51
+
" - Does not add a dependency to Lombok, users need to do that manually\n" +
52
+
" - Ignores fields that are declared on the same line as others, e.g. `private int foo, bar; " +
53
+
"Users who have such fields are advised to separate them beforehand with [org.openrewrite.staticanalysis.MultipleVariableDeclaration](https://docs.openrewrite.org/recipes/staticanalysis/multiplevariabledeclarations).\n" +
54
+
" - Does not offer any of the configuration keys listed in https://projectlombok.org/features/GetterSetter.";
0 commit comments