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