mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
21 lines
360 B
Java
21 lines
360 B
Java
class Test {
|
|
|
|
private static void f(boolean a, boolean b) {
|
|
if (a) {
|
|
newMethod();
|
|
} else {
|
|
System.out.println("");
|
|
}
|
|
}
|
|
|
|
private static void newMethod() {
|
|
try {
|
|
System.out.println();
|
|
return;
|
|
}
|
|
catch (Exception e) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
} |