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

16 lines
222 B
Java

public class Test {
void foo() {
new A() {
void fe() {
Test.this.newMethod();
}
}
}
private void newMethod() {
System.out.println("");
}
}
class A {
void newMethod(){}
}