mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
automatic renamer for params in hierarchy (IDEADEV-20861)
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
public class Test {
|
||||
int myI;
|
||||
void foo(int <caret>i){
|
||||
myI = i;
|
||||
}
|
||||
}
|
||||
|
||||
class TestImpl extends Test {
|
||||
void foo(int i){
|
||||
super.foo(i);
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
public class Test {
|
||||
int myI;
|
||||
void foo(int i){
|
||||
myI = i;
|
||||
}
|
||||
}
|
||||
|
||||
class TestImpl extends Test {
|
||||
void foo(int pp){
|
||||
super.foo(pp);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user