mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 21:15:58 +07:00
20 lines
417 B
Java
20 lines
417 B
Java
import org.jetbrains.annotations.Nullable;
|
|
|
|
class Zoo2 {
|
|
|
|
void foo(@Nullable final Object foo, @Nullable final Object bar) {
|
|
if (foo == null) {
|
|
return;
|
|
}
|
|
|
|
new Runnable() {
|
|
int hc = foo.hashCode();
|
|
int hc2 = <warning descr="Method invocation 'bar.hashCode()' may produce 'java.lang.NullPointerException'">bar.hashCode()</warning>;
|
|
|
|
public void run() {
|
|
}
|
|
}.run();
|
|
}
|
|
|
|
}
|