mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
17 lines
322 B
Java
17 lines
322 B
Java
class C {
|
|
void foo() {
|
|
if (a) {
|
|
if (b) {
|
|
call();
|
|
} // foo
|
|
else if (c) {
|
|
otherCall();
|
|
} // bar
|
|
else {
|
|
thirdCall();
|
|
} // baz
|
|
} else {
|
|
fourthCall();
|
|
} // qux
|
|
}
|
|
} |