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,7 @@
import java.util.ArrayList;
public class Test extends ArrayList {
void x() {
removeRange(0, 0);
}
}
@@ -0,0 +1,2 @@
public class TestSubclass extends Test {
}
@@ -0,0 +1,6 @@
import java.util.*;
public class Test extends ArrayList {
void x() {
removeRange(0, 0);
}
}