mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-20 00:54:26 +07:00
10 lines
172 B
Java
10 lines
172 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
interface I {
|
|
String FOO = newMethod();
|
|
|
|
@NotNull
|
|
private static String newMethod() {
|
|
return "hello";
|
|
}
|
|
} |