mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
deep delete parameter in method call hierarchy
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
interface I {
|
||||
void foo(int i);
|
||||
}
|
||||
class Test implements I {
|
||||
public void foo(int i) {
|
||||
bar();
|
||||
bar();
|
||||
}
|
||||
|
||||
void bar(){}
|
||||
}
|
||||
Reference in New Issue
Block a user