mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
7 lines
252 B
Java
7 lines
252 B
Java
class TestGenericsInstanceof {
|
|
public void foo(Object o) {
|
|
boolean test = true;
|
|
<warning descr="Condition 'test' at the left side of assignment expression is always 'true'. Can be simplified">test</warning> &= o.hashCode() > 3;
|
|
}
|
|
}
|