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

5 lines
106 B
Java

interface I {
static void foo () {
<selection>System.out.println("hello");</selection>
}
}