disable "swap if statements" intention where it would fail

This commit is contained in:
peter
2018-09-07 12:37:21 +02:00
parent af4432cd8d
commit 390caa70ad
2 changed files with 15 additions and 1 deletions
@@ -0,0 +1,9 @@
// "Swap 'if' statements" "false"
class Test {
public static void main(String[] args) {
if (true) {
System.out.println();
}
el<caret>se if (true)
}
}