mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 17:52:27 +07:00
6 lines
170 B
Java
6 lines
170 B
Java
class Test {
|
|
public boolean foo() {
|
|
Object o = null;
|
|
return (<warning descr="Casting 'o' to 'String' is redundant">String</warning>) o == null;
|
|
}
|
|
} |