Files
openide/java/java-tests/testData/codeInsight/splitIfAction/afterComment.java
anna 130e95dbf8 split if: skip comments inside (IDEA-95297)
they should be restored though
2012-11-19 17:04:41 +01:00

9 lines
125 B
Java

class C {
void foo() {
if (a) {
call();
} else if (b) {
call();
}
}
}