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

11 lines
196 B
Java

class Fest {
public static void main(String[] args) {
String f = "";
newMethod();
}
private static void newMethod() {
String f = ;
System.out.println(f);
}
}