convert switch -> if: ignore whitespaces (IDEA-165260)

This commit is contained in:
Anna Kozlova
2018-06-29 20:20:36 +03:00
parent 731f16c508
commit a6db339c7d
3 changed files with 1 additions and 2 deletions
@@ -5,7 +5,6 @@ class Precedence {
int a = 10;
if ((a & 1) == 0) {
System.out.println("0");
} else if ((a & 1) == 1) {
System.out.println("1");
}
@@ -9,7 +9,6 @@ class X {
//comment7
//comment8
if ("case1".equals(value)) {//comment2
} else if ("case2".equals(value)) {
} else {
}