extract super class: check for conflicts under progress; skip check for superclass inheritors mismatch - as no actual members would go there

This commit is contained in:
unknown
2010-07-05 14:55:33 +04:00
committed by anna
parent 5b9cce7e4a
commit f87d17b2a3
9 changed files with 110 additions and 10 deletions
@@ -0,0 +1,5 @@
public class Test {
void x() {
foo();
}
}
@@ -0,0 +1,4 @@
public class TestSubclass extends Test {
private void foo(){}
}