mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
12 lines
235 B
Java
12 lines
235 B
Java
// "Invert 'if' condition" "true"
|
|
class Main {
|
|
Object foo(boolean b1, boolean b2) {
|
|
if (b1) {
|
|
return null;
|
|
} else if (!b<caret>2) {
|
|
return "a";
|
|
}
|
|
|
|
return null;
|
|
}
|
|
} |