inplace introduce: do not select the typed name on template restart (IDEA-69477)

This commit is contained in:
anna
2012-07-24 15:15:04 +02:00
parent 6551a36459
commit 858a95e9bd
5 changed files with 30 additions and 9 deletions
@@ -1,12 +1,12 @@
public class Derr {
public static final Long ONE = new Long(1);
public static final Long LONGONE = new Long(1);
public static void main(String[] args) {
long value;
value = ONE;
value = ONE;
value = ONE;
value = LONGONE;
value = LONGONE;
value = LONGONE;
}
}
@@ -3,7 +3,7 @@ class Test {
private final String string;
Test() {
<caret>string = "";
string = "";<caret>
myTimer = string;
}
}
@@ -1,6 +1,6 @@
public class Aaa {
public String method(String string) {
return string + string + string;
public String method(String stringstring) {
return stringstring + stringstring + stringstring;
}
public String getString() {