mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-85035 Wrong "possible NPE" warning
This commit is contained in:
+26
@@ -0,0 +1,26 @@
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
public class Bar3 {
|
||||
|
||||
@NotNull
|
||||
Object getObj() {
|
||||
return new Object();
|
||||
}
|
||||
|
||||
void foo(Collection<Object> collection) {
|
||||
if (!collection.isEmpty()) {
|
||||
Object first = collection.iterator().next();
|
||||
if (first != getObj() || collection.size() > 0) {
|
||||
System.out.println(first.hashCode());
|
||||
}
|
||||
if (first == getObj() || collection.size() > 0) {
|
||||
System.out.println(first.hashCode());
|
||||
}
|
||||
if (first == null) {
|
||||
System.out.println(<warning descr="Method invocation 'first.hashCode()' may produce 'java.lang.NullPointerException'">first.hashCode()</warning>);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user