mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
236 B
Java
12 lines
236 B
Java
public interface FromStaticMethodInInterface {
|
|
static void test(String a, String b) {
|
|
|
|
newMethod(a, b);
|
|
|
|
}
|
|
|
|
static void newMethod(String a, String b) {
|
|
String c = a + b;
|
|
System.out.println(c);
|
|
}
|
|
} |