mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 21:30:23 +07:00
GitOrigin-RevId: f3d942d13ed72b7f94e189bb9d155b64c4603a97
10 lines
176 B
Java
10 lines
176 B
Java
// "Invert 'if' condition" "true"
|
|
|
|
class ExpressionExptected {
|
|
public String validate(boolean b) {
|
|
if (() || !b) {
|
|
return null;
|
|
}
|
|
return "";
|
|
}
|
|
} |