mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 07:15:01 +07:00
21 lines
309 B
Java
21 lines
309 B
Java
class Npe {
|
|
Object foo(Object[] objs) {
|
|
boolean skip = true;
|
|
for (Object o : objs) {
|
|
if (o instanceof String) {
|
|
skip = false;
|
|
continue;
|
|
}
|
|
|
|
if (skip) {
|
|
continue;
|
|
}
|
|
bar();
|
|
}
|
|
|
|
return "";
|
|
}
|
|
|
|
void bar() {
|
|
}
|
|
} |