mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 01:20:53 +07:00
16 lines
258 B
Java
16 lines
258 B
Java
// "Invert 'if' condition" "true"
|
|
public class C {
|
|
public static int main(String[] args) {
|
|
if (!a) {
|
|
foo();
|
|
return 1;
|
|
}
|
|
else {
|
|
return 2;
|
|
}
|
|
}
|
|
|
|
private static void foo() {
|
|
}
|
|
}
|