mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
15 lines
209 B
Java
15 lines
209 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
public class A {
|
|
A(String s) {
|
|
}
|
|
|
|
A() {
|
|
this(newMethod());
|
|
}
|
|
|
|
@NotNull
|
|
private static String newMethod() {
|
|
return "a";
|
|
}
|
|
} |