mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 04:09:09 +07:00
11 lines
215 B
Java
11 lines
215 B
Java
// "Invert 'if' condition" "true"
|
|
class A {
|
|
public static void foo() {
|
|
if (1 == 2) {
|
|
return;
|
|
}
|
|
// very important comment here
|
|
System.out.println("something");
|
|
}
|
|
}
|