quick fix to convert empty anonymous class to the plain new expression

This commit is contained in:
Alexey Kudravtsev
2018-01-22 15:10:16 +03:00
parent 1767a3ecbf
commit 5f67dd2d84
4 changed files with 82 additions and 2 deletions
@@ -0,0 +1,9 @@
// "Remove '{}'" "true"
class X {
Object o = new <caret>X() {
};
}