mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
21 lines
388 B
Java
21 lines
388 B
Java
class Test {
|
|
|
|
private static void f(boolean a, boolean b) {
|
|
if (a) {
|
|
newMethod(b);
|
|
} else {
|
|
System.out.println("");
|
|
}
|
|
}
|
|
|
|
private static void newMethod(boolean b) {
|
|
if (b) {
|
|
System.out.println("");
|
|
return;
|
|
} else {
|
|
System.out.println("");
|
|
return;
|
|
}
|
|
}
|
|
|
|
} |