mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 02:50:55 +07:00
13 lines
275 B
Java
13 lines
275 B
Java
// "Invert 'if' condition" "true"
|
|
class Main {
|
|
void foo(boolean a1, boolean b1){
|
|
if (a1)
|
|
if (b<caret>1) {
|
|
} else {
|
|
System.out.println("1");
|
|
}
|
|
else {
|
|
System.out.println("2");
|
|
}
|
|
}
|
|
} |