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

10 lines
137 B
Java

class Test{
public void foo() {
if (cond1){
<selection>if (cond2) return;</selection>
}
else if (cond3){
}
}
}