mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
ignore completely automatic renamer if conllision was found (IDEA-13684)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
class Y { // rename me to Y and let the refactoring rename the variables too.
|
||||
void foo(Y y) {
|
||||
String yz = "asdf";
|
||||
System.out.println("x: " + y + yz);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
class XX { // rename me to Y and let the refactoring rename the variables too.
|
||||
void foo(XX xx) {
|
||||
String yz = "asdf";
|
||||
System.out.println("x: " + xx + yz);
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class Y { // rename me to Y and let the refactoring rename the variables too.
|
||||
void foo(Y x) {
|
||||
String y = "asdf";
|
||||
System.out.println("x: " + x + y);
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class XX { // rename me to Y and let the refactoring rename the variables too.
|
||||
void foo(XX x) {
|
||||
String y = "asdf";
|
||||
System.out.println("x: " + x + y);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user