Files
openide/java/java-tests/testData/refactoring/inlineParameter/RefNewInnerForMethod.java.after

21 lines
309 B
Plaintext

public class Subject {
private int myInt;
public void withClass() {
myInt += new Local().hashCode();
}
class User {
private void oper() throws IOException {
Subject subj = new Subject();
subj.withClass();
}
}
class Local {
}
}