mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
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:
+7
@@ -0,0 +1,7 @@
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Test extends ArrayList {
|
||||
void x() {
|
||||
removeRange(0, 0);
|
||||
}
|
||||
}
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
public class TestSubclass extends Test {
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import java.util.*;
|
||||
public class Test extends ArrayList {
|
||||
void x() {
|
||||
removeRange(0, 0);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user