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

10 lines
164 B
Java

import org.jetbrains.annotations.NotNull;
interface I {
String FOO = newMethod();
@NotNull
static String newMethod() {
return "hello";
}
}