mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
11 lines
250 B
Java
11 lines
250 B
Java
// "Invert If Condition" "true"
|
|
class A {
|
|
void foo() {
|
|
String[] entries = null;
|
|
for (String entry : entries) {
|
|
<caret>if (entry != null) {
|
|
System.out.println("not null");
|
|
}
|
|
}
|
|
}
|
|
} |