mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
[java] BlockJoinLinesHandler: handle more tricky cases from IDEA-263507
GitOrigin-RevId: 1661c82421ea73a3a18c349330889c309769e053
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ca0ca6e53b
commit
b4c90cfd11
@@ -0,0 +1,12 @@
|
||||
class C {
|
||||
private static void fn(boolean condA, boolean condB) {
|
||||
if (condA) {<caret>
|
||||
for(int i=0; i<10; i++)
|
||||
if (condB) {
|
||||
System.out.println("condA && condB");
|
||||
}
|
||||
} else {
|
||||
System.out.println("!condA");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user