mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
216 B
Java
16 lines
216 B
Java
class Navigation {
|
|
void m1() {
|
|
m2(42);
|
|
}
|
|
|
|
void m2(int i) {
|
|
int r = 3 * i;
|
|
System.out.println(r);
|
|
}
|
|
|
|
void m3(boolean f) throws Exception {
|
|
if (f) m4();
|
|
}
|
|
|
|
void m4() throws Exception { }
|
|
} |