mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 22:51:01 +07:00
15 lines
239 B
Java
15 lines
239 B
Java
// "Invert 'if' condition" "true"
|
|
public class C {
|
|
public void test() {
|
|
for (int i = 0; i < 42; i++) {
|
|
if (i != 7) {
|
|
continue;
|
|
}
|
|
else {
|
|
//c1
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|