IDEA-179128 Quick-fix for "'if' statement has empty body"

This commit is contained in:
Tagir Valeev
2017-09-19 13:04:21 +07:00
parent 271d62ad19
commit 36999ebfc4
20 changed files with 208 additions and 28 deletions

View File

@@ -0,0 +1,8 @@
// "Delete element" "true"
class Test {
void test(int x) {
if(x > -5) {
System.out.println("ok");
} else i<caret>f(x > 0) {} else {}
}
}