mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
14 lines
194 B
Java
14 lines
194 B
Java
class Some {
|
|
final boolean getFoo() { return equals(2); }
|
|
void changeEverything() {}
|
|
|
|
void bar() {
|
|
if (getFoo()) {
|
|
changeEverything();
|
|
if (getFoo()) {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
} |