mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
17 lines
307 B
Java
17 lines
307 B
Java
class Test {
|
|
String[] foo() {
|
|
return null;
|
|
}
|
|
|
|
boolean bar(String s) {
|
|
return false;
|
|
}
|
|
|
|
void foooooo() {
|
|
String[] modules = foo();
|
|
int i = 0;
|
|
while (i < modules.length && <selection>!bar(modules[i])</selection>) {
|
|
i++;
|
|
}
|
|
}
|
|
} |