mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
212 B
Java
12 lines
212 B
Java
// "Invert 'if' condition" "true"
|
|
class A {
|
|
public void foo() {
|
|
//comment
|
|
if (1 != 2) {
|
|
System.out.println("false");
|
|
}
|
|
else {
|
|
System.out.println("true");
|
|
}
|
|
}
|
|
} |