mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
17 lines
271 B
Java
17 lines
271 B
Java
class Test {
|
|
|
|
private static void f(boolean a, boolean b) {
|
|
if (a) {
|
|
<selection>try {
|
|
System.out.println();
|
|
return;
|
|
}
|
|
catch (Exception e) {
|
|
return;
|
|
}</selection>
|
|
} else {
|
|
System.out.println("");
|
|
}
|
|
}
|
|
|
|
} |