Files
openide/java/java-tests/testData/refactoring/moveInstanceMethod/Recursive1.java.after
Dmitry Jemerov d1b91105a2 test++
2009-09-10 20:03:37 +04:00

14 lines
190 B
Plaintext

class FirstClass {
void y() {
new SecondClass().x();
}
}
class SecondClass {
SecondClass g() { return null; }
void x() {
if (this != null) g().x();
}
}