mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 13:50:53 +07:00
22 lines
344 B
Java
22 lines
344 B
Java
class Test {
|
|
|
|
private static void f(boolean a, boolean b) {
|
|
if (a) {
|
|
newMethod();
|
|
return;
|
|
} else {
|
|
System.out.println("");
|
|
}
|
|
}
|
|
|
|
private static void newMethod() {
|
|
try {
|
|
System.out.println();
|
|
return;
|
|
}
|
|
catch (Exception e) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
} |