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