mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 02:33:48 +07:00
19 lines
339 B
Java
19 lines
339 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
class Test {
|
|
private void test2(@NotNull Object bar) {
|
|
|
|
}
|
|
private Object test(Object foo, Object bar) {
|
|
if (foo == null) {
|
|
System.out.println(<caret>null);
|
|
System.out.println(foo);
|
|
return foo;
|
|
}
|
|
if (bar == null) {
|
|
test2(bar);
|
|
}
|
|
return foo;
|
|
}
|
|
|
|
} |