Files
openide/java/java-tests/testData/refactoring/inlineMethod/ChainingConstructor.java.after
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

19 lines
384 B
Plaintext

class InlineMethodTest {
public static InlineMethodTest createInstance() {
return new InlineMethodTest("hello world", 0);
}
protected InlineMethodTest() {
this("hello world", 0);
}
public InlineMethodTest(String text, int i) {
}
}
class Derived extends InlineMethodTest {
public Derived(int i) {
super("hello world", i);
}
}