mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 18:08:51 +07:00
14 lines
255 B
Java
14 lines
255 B
Java
// "Invert 'if' condition" "true"
|
|
class Main {
|
|
Object foo(boolean b1, boolean b2) {
|
|
if (b1) {
|
|
return null;
|
|
} else {
|
|
if (b2) {
|
|
return null;
|
|
}
|
|
return "a";
|
|
}
|
|
|
|
}
|
|
} |