mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 04:50:58 +07:00
17 lines
353 B
Java
17 lines
353 B
Java
class C {
|
|
void foo(boolean a, boolean b, boolean c) {
|
|
if (a) {
|
|
if (b) {
|
|
call();
|
|
} // foo
|
|
else if (c) {
|
|
otherCall();
|
|
} // bar
|
|
else {
|
|
thirdCall();
|
|
} // baz
|
|
} else {
|
|
fourthCall();
|
|
} // qux
|
|
}
|
|
} |