mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-01 21:20:54 +07:00
16 lines
265 B
Java
16 lines
265 B
Java
// "Invert 'if' condition" "true"
|
|
class A {
|
|
public boolean accept() {
|
|
boolean xx = true;
|
|
switch (1) {
|
|
case 0:
|
|
if (!xx) {
|
|
break;
|
|
}
|
|
else {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
} |