mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
228 B
Java
14 lines
228 B
Java
// "Invert 'if' condition" "true"
|
|
class A {
|
|
public boolean accept() {
|
|
boolean xx = true;
|
|
switch (1) {
|
|
case 0:
|
|
<caret>if (xx) {
|
|
return true;
|
|
}
|
|
break;
|
|
}
|
|
return false;
|
|
}
|
|
} |