mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-130703 Join Lines (Ctrl-Shift-J) could join nested if's
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class Foo {
|
||||
void test(int a, int b) {
|
||||
if(a > 0) if(b < 0) {
|
||||
System.out.println(a+b);
|
||||
} else {
|
||||
System.out.println(a-b);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user