mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-13 06:44:44 +07:00
10 lines
208 B
Java
10 lines
208 B
Java
// "Invert If Condition" "true"
|
|
class A {
|
|
public static void foo() {
|
|
<caret>if (1 != 2) {
|
|
// very important comment here
|
|
System.out.println("something");
|
|
}
|
|
}
|
|
}
|