mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
12 lines
270 B
Java
12 lines
270 B
Java
// "Invert 'if' condition" "true"
|
|
class A {
|
|
// IDEA-153371
|
|
public void foo() {
|
|
String value ="not-null";
|
|
|
|
<caret>if (value != null) {
|
|
System.out.println(value);
|
|
// Comment gets deleted.
|
|
} // Another comment
|
|
}
|
|
} |