mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 02:15:59 +07:00
16 lines
584 B
Java
16 lines
584 B
Java
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
import java.util.Collection;
|
|
|
|
class Bar3 {
|
|
|
|
public void foo(@Nullable Object element) {
|
|
final String elementType = element != null ? element.toString() : null;
|
|
if (elementType == someString()) {
|
|
System.out.println(element.<warning descr="Method invocation 'hashCode' may produce 'java.lang.NullPointerException'">hashCode</warning>());
|
|
}
|
|
}
|
|
|
|
String someString() { return <warning descr="'null' is returned by the method which is not declared as @Nullable">null</warning>; }
|
|
} |