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