mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
13 lines
252 B
Java
13 lines
252 B
Java
class ForIf {
|
|
String foo(int[] a, boolean b) {
|
|
for (int x : a) <selection>if (b) {
|
|
String s = bar(x);
|
|
if (s != null) return s;
|
|
}</selection>
|
|
|
|
return null;
|
|
}
|
|
|
|
String bar(int x) { return "";}
|
|
}
|