mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
ignore completely automatic renamer if conllision was found (IDEA-13684)
This commit is contained in:
+14
@@ -0,0 +1,14 @@
|
||||
public class Test {
|
||||
int myI;
|
||||
void foo(int <caret>i){
|
||||
myI = i;
|
||||
}
|
||||
}
|
||||
|
||||
class TestImpl extends Test {
|
||||
void foo(int i){
|
||||
super.foo(i);
|
||||
int pp = 0;
|
||||
System.out.println(pp);
|
||||
}
|
||||
}
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
public class Test {
|
||||
int myI;
|
||||
void foo(int i){
|
||||
myI = i;
|
||||
}
|
||||
}
|
||||
|
||||
class TestImpl extends Test {
|
||||
void foo(int i){
|
||||
super.foo(i);
|
||||
int pp = 0;
|
||||
System.out.println(pp);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user