mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 01:53:51 +07:00
GitOrigin-RevId: f3d942d13ed72b7f94e189bb9d155b64c4603a97
10 lines
173 B
Java
10 lines
173 B
Java
// "Invert 'if' condition" "true"
|
|
|
|
class ExpressionExptected {
|
|
public String validate(boolean b) {
|
|
if <caret>(!() && b) {
|
|
return "";
|
|
}
|
|
return null;
|
|
}
|
|
} |