mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 10:21:05 +07:00
15 lines
351 B
Java
15 lines
351 B
Java
// "Invert If Condition" "true"
|
|
class B {
|
|
public static void foo() {
|
|
for (int i = 0; i < 10; i++) {
|
|
if (i % 2 == 0) {
|
|
<caret>if (i == 0) {
|
|
System.out.println("== 0");
|
|
continue;
|
|
}
|
|
|
|
System.out.println("!= 0");
|
|
}
|
|
}
|
|
}
|
|
} |