blob: 0bb63f2db9be41a47a1c795532e5abf45dc59158 [file] [log] [blame]
// "Invert If Condition" "true"
class A {
void foo() {
String[] entries = null;
for (String entry : entries) {
<caret>if (entry == null)
continue;
System.out.println("not null");
}
}
}