mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
13 lines
260 B
Java
13 lines
260 B
Java
// "Invert 'if' condition" "true"
|
|
class Main {
|
|
void foo(boolean a1, boolean b1){
|
|
if (a1) {
|
|
if (!b1) {
|
|
System.out.println("1");
|
|
}
|
|
}
|
|
else {
|
|
System.out.println("2");
|
|
}
|
|
}
|
|
} |