mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
10 lines
215 B
Java
10 lines
215 B
Java
class C {
|
|
public Object m() {
|
|
<selection>for (Object o : new ArrayList<Object>()) {
|
|
if (o != null) {
|
|
return o;
|
|
}
|
|
}</selection>
|
|
return null;
|
|
}
|
|
} |