Files
openide/java/java-tests/testData/refactoring/extractMethod/Method2InterfaceFromStatic_after.java

9 lines
141 B
Java

interface I {
static void foo () {
newMethod();
}
static void newMethod() {
System.out.println("hello");
}
}