mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 09:50:57 +07:00
12 lines
218 B
Java
12 lines
218 B
Java
// "Invert 'if' condition" "true"
|
|
class A {
|
|
public void foo(boolean c, boolean c2) {
|
|
if (c) a();
|
|
else {
|
|
if (c2) {
|
|
return;
|
|
}
|
|
b();
|
|
}
|
|
}
|
|
} |