cleanup: remove 'public' modifier from constructors in non-public classes (IDEA-195931)
public constructors in non-public classes may be confusing, and removing them makes code shorter.
This commit is contained in:
@@ -118,7 +118,7 @@ public class DecompilerTestFixture {
|
||||
private static class TestConsoleDecompiler extends ConsoleDecompiler {
|
||||
private final HashMap<String, ZipFile> zipFiles = new HashMap<>();
|
||||
|
||||
public TestConsoleDecompiler(File destination, Map<String, Object> options) {
|
||||
TestConsoleDecompiler(File destination, Map<String, Object> options) {
|
||||
super(destination, options, new PrintStreamLogger(System.out));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user