mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
17 lines
294 B
Java
17 lines
294 B
Java
class ElseIf {
|
|
String foo(boolean a, boolean b) {
|
|
if (a) {
|
|
|
|
} else <selection>{
|
|
if (b) {
|
|
String s = bar();
|
|
if (s != null) return s;
|
|
}
|
|
}</selection>
|
|
|
|
return null;
|
|
}
|
|
|
|
String bar() { return "";}
|
|
}
|