pull up conflicts: do not warn if moved method would use super instead (IDEA-56212)

This commit is contained in:
unknown
2010-07-05 14:55:32 +04:00
committed by anna
parent 17a9e105a8
commit 862c964a70
16 changed files with 208 additions and 1 deletions
@@ -0,0 +1,5 @@
package a;
import b.B;
public class A extends B {
protected void foo(){}
}
@@ -0,0 +1,7 @@
package b;
import c.C;
public class B extends C {
void method2Move() {
foo();
}
}
@@ -0,0 +1,4 @@
package c;
public class C {
protected void foo(){}
}
@@ -0,0 +1,8 @@
package a;
import b.B;
public class A extends B {
void method2Move() {
foo();
}
protected void foo(){}
}
@@ -0,0 +1,4 @@
package b;
import c.C;
public class B extends C {
}
@@ -0,0 +1,4 @@
package c;
public class C {
protected void foo(){}
}