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

16 lines
226 B
Java

class Test{
public void foo() {
if (cond1){
if (newMethod()) return;
}
else if (cond3){
}
x();
}
private boolean newMethod() {
if (cond2) return true;
return false;
}
}