Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/afterConstructor.java
Anna Kozlova 09b8dc66e1 [java] add remove arguments to (implicit) constructor calls (IDEA-224760)
GitOrigin-RevId: 5984a6c6310e69275054d2ebb70717635683f490
2022-07-19 08:45:03 +00:00

8 lines
125 B
Java

// "Remove redundant arguments to call 'A()'" "true"
class A {
public A() { }
private void method() {
new A();
}
}