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

10 lines
172 B
Java

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