IDEA-130703 Join Lines (Ctrl-Shift-J) could join nested if's

This commit is contained in:
Tagir Valeev
2018-04-19 17:03:10 +07:00
parent fd8c022a0e
commit 4b65e11e99
9 changed files with 116 additions and 0 deletions
@@ -0,0 +1,7 @@
class Foo {
void test(int a, int b) {
if(a > 0 && b < 0) {
System.out.println(a+b);
}
}
}