mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
16 lines
241 B
Java
16 lines
241 B
Java
// "Replace with forEach" "false"
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
class Sample {
|
|
List<String> foo = new ArrayList<>();
|
|
{
|
|
for (String s : fo<caret>o) {
|
|
if (s == null) {
|
|
continue;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|