mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
15 lines
241 B
Java
15 lines
241 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
import java.util.Collection;
|
|
|
|
class Bar3 {
|
|
|
|
public void main2(Object o1, Object o2) {
|
|
if (o1 == null) {
|
|
System.out.println();
|
|
}
|
|
if (o1 != o2 || o2.hashCode() == 3) {
|
|
|
|
}
|
|
}
|
|
} |