mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-19 01:09:52 +07:00
10 lines
179 B
Java
10 lines
179 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class Npe {
|
|
Object foo(@NotNull Object o) {
|
|
if (o == null) {
|
|
// Should not get there.
|
|
}
|
|
return o;
|
|
}
|
|
} |