mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
GitOrigin-RevId: 59502372bb306221a601ee1aa0991a8092eb7335
11 lines
224 B
Java
11 lines
224 B
Java
class C {
|
|
private static void fn(boolean condA, boolean condB) {
|
|
if (condA) {<caret>
|
|
if (condB) {
|
|
System.out.println("condA && condB");
|
|
}
|
|
} else {
|
|
System.out.println("!condA");
|
|
}
|
|
}
|
|
} |