mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 21:57:36 +07:00
15 lines
259 B
Java
15 lines
259 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class Test {
|
|
|
|
void test() {
|
|
String first = getFirst();
|
|
String second = getFirst();
|
|
String third = "Third";
|
|
}
|
|
|
|
@NotNull
|
|
private static String getFirst() {
|
|
return "First";
|
|
}
|
|
} |