blob: 9ff6de7c05c71a76d408b0c36fde316309cae165 [file] [log] [blame]
// "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;
}
}
}
}