ignore completely automatic renamer if conllision was found (IDEA-13684)

This commit is contained in:
anna
2010-01-21 18:06:05 +03:00
parent d6d72f4eeb
commit 2b5f3391b7
10 changed files with 112 additions and 20 deletions
@@ -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);
}
}
@@ -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);
}
}
@@ -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);
}
}