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