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:
nik
2018-09-06 16:43:10 +03:00
parent d42689b205
commit 21a80957bb
6 changed files with 9 additions and 9 deletions

View File

@@ -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));
}