Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/createConstructorParameterFromField/afterAlreadyAssigned.java

12 lines
199 B
Java

// "Add constructor parameter" "true"
class Foo {
private final String text;
public Foo(String text) {
this.text = text;
}
public Foo(int i, String text) {
this.text = text;
}
}