mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: 4d64e2fced6e7b3c87b1361de36909fec8d7db0a
17 lines
341 B
Java
17 lines
341 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("");
|
|
}
|
|
}
|
|
|
|
} |