mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
15 lines
258 B
Java
15 lines
258 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 "";}
|
|
}
|