mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
safe delete: search for all method in hierarchy when delete param (IDEA-59114)
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
public class C1 implements I {
|
||||
public void f(int a1, int a2) {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
public interface I {
|
||||
void f(int a1, int a2);
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
public class C2 extends C1 {
|
||||
public void f(int a1, int a<caret>2) {
|
||||
super.f(a1, a2);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user