mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
26 lines
513 B
Java
26 lines
513 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
class DoIfWhile {
|
|
String foo(int a, boolean b) {
|
|
int x = 0;
|
|
do {
|
|
String s = newMethod(b, x);
|
|
if (s != null) return s;
|
|
}
|
|
while (++x < a);
|
|
|
|
return null;
|
|
}
|
|
|
|
@Nullable
|
|
private String newMethod(boolean b, int x) {
|
|
/*comment*/
|
|
if (b) {
|
|
String s = bar(x);
|
|
if (s != null) return s;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
String bar(int x) { return "";}
|
|
} |