Files
openide/java/java-tests/testData/refactoring/extractMethod/ChainedConstructorInvalidDuplicates_after.java
Dmitry Jemerov b7e66aee44 test++
2009-09-10 20:21:16 +04:00

19 lines
270 B
Java

class A {
private int i;
private int j;
private int s;
public A(int i, int j) {
this(i);
this.j = j;
}
private A(int i) {
this.i = i;
}
public A(int i, String s) {
this.s = s;
this.i = i;
}
}