Thomas Rebele
Results
2
issues of
Thomas Rebele
I'm using `error_prone_refaster-2.24.1.jar` and `error_prone_core-2.24.1-with-dependencies.jar` to refactor code. Given the following class to refactor: ``` import java.util.*; public class RefasterExample { public void method2() { Arrays.asList(// "bad"); Arrays.asList(/**/ "bad"); Arrays.asList("good");...
I'm using `error_prone_refaster-2.24.1.jar` and `error_prone_core-2.24.1-with-dependencies.jar` to refactor code. I noticed that the block do not get applied in some cases. I'll explain with an example. Here the class that I...