mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
13 lines
275 B
Java
13 lines
275 B
Java
// "Invert 'if' condition" "true"
|
|
class A {
|
|
// IDEA-153371
|
|
public void foo() {
|
|
String value ="not-null";
|
|
|
|
if (value == null) {
|
|
return; // Another comment
|
|
}
|
|
System.out.println(value);
|
|
// Comment gets deleted.
|
|
}
|
|
} |