Martin Ross
Martin Ross
## What version of OpenRewrite are you using? I am using 6.6.3 ## How are you running OpenRewrite? ## What is the smallest, simplest way to reproduce the problem? ```java...
## What version of OpenRewrite are you using? I am using 6.6.3 ## How are you running OpenRewrite? ## What is the smallest, simplest way to reproduce the problem? ```java...
org.openrewrite.java.cleanup.RenamePrivateFieldsToCamelCase only checks if there is a private field. It does not recognize @Data or any other lombok annotation so renaming the field will introducing a breaking change. To preserve...
``` class Foo { void Bar() { final Fizz Fizz = new Fizz() } } ``` failes due to transformation ``` class Foo { void Bar() { final Fizz fizz...
SVG generated images have clickable URLs (great!). However working on large diagrams with many connections (e.g. C4 System Landscape Diagrams) it would be nice to provide clickable functionality (maybe shift-click...
For a class that is a utility class https://projectlombok.org/features/experimental/UtilityClass automatically transform the class into a @UtilityClass
## What is the smallest, simplest way to reproduce the problem? ```java class A { void foo(String bar) { bar.replace("=","|"); } } ``` ## What did you see instead? ```java...
## What version of OpenRewrite are you using? I am using - LAtest ## What is the smallest, simplest way to reproduce the problem? ```java package bar; import foo.A; class...
## What version of OpenRewrite are you using? Latest ## How are you running OpenRewrite? gradle ## What is the smallest, simplest way to reproduce the problem? ```java import static...
## What is the smallest, simplest way to reproduce the problem? ```java class A { public static final Map test = Map.of("Android"); public static final String ANDROID = "Android"; void...