mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
14 lines
338 B
Java
14 lines
338 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 == "") {
|
|
System.out.println(element.hashCode());
|
|
}
|
|
}
|
|
} |