blob: 98c26df45721d9db5c4f0b4d07fe8955ff879a6e [file] [log] [blame]
import org.jetbrains.annotations.NotNull;
import java.util.Collection;
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 (<warning descr="Condition 'first == null' is always 'false'">first == null</warning>) {
System.out.println(first.hashCode());
}
}
}
void foo2(Collection<Object> collection) {
if (!collection.isEmpty()) {
Object first = collection.iterator().next();
if (first != getObj() || collection.size() > 0) {
first.hashCode();
}
}
}
void foo3(Collection<Object> collection) {
if (!collection.isEmpty()) {
Object first = collection.iterator().next();
if (first == getObj() || collection.size() > 2) {
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>);
}
}
}
}