mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 18:20:52 +07:00
13 lines
288 B
Java
13 lines
288 B
Java
// "Invert 'if' condition" "true"
|
|
class A {
|
|
public void foo() {
|
|
Runnable r = () -> {
|
|
if (System.currentTimeMillis() <= 1) {
|
|
System.err.println("Elvis lives");
|
|
}
|
|
else {
|
|
return;
|
|
}
|
|
};
|
|
}
|
|
} |