mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-23 07:50:55 +07:00
7 lines
141 B
Java
7 lines
141 B
Java
class Test {
|
|
void method() {
|
|
for(Iterator<String> it = null; it.hasNext();) {
|
|
String s = it.next();
|
|
}
|
|
}
|
|
} |