mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 13:43:29 +07:00
9 lines
188 B
Java
9 lines
188 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class NoCheckForStaticNotNullMethodCall {
|
|
@NotNull
|
|
static String foo() {return "a";}
|
|
|
|
@NotNull
|
|
Object method() { return foo(); }
|
|
} |