split if: skip comments inside (IDEA-95297)

they should be restored though
This commit is contained in:
anna
2012-11-19 17:04:41 +01:00
parent ed23e353b4
commit 130e95dbf8
4 changed files with 24 additions and 2 deletions
@@ -0,0 +1,9 @@
class C {
void foo() {
if (a) {
call();
} else if (b) {
call();
}
}
}