mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
205 B
Java
13 lines
205 B
Java
// "Invert 'if' condition" "true"
|
|
public class C {
|
|
public void test() {
|
|
for (int i = 0; i < 42; i++) {
|
|
i<caret>f (i == 7) {
|
|
//c1
|
|
return;
|
|
}
|
|
continue;
|
|
}
|
|
}
|
|
}
|