mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 2172db0a3c0355359d9e0f822409483b8f3c35e7
13 lines
224 B
Java
13 lines
224 B
Java
enum X {
|
|
FOO, BAR, BAZ
|
|
}
|
|
|
|
class C {
|
|
void test(X x) {
|
|
if (x == X.FOO) {
|
|
if (<warning descr="Condition 'x.name().equals(\"FOO\")' is always 'true'">x.name().equals("FOO")</warning>) {
|
|
|
|
}
|
|
}
|
|
}
|
|
} |