mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
inplace introduce: do not select the typed name on template restart (IDEA-69477)
This commit is contained in:
+4
-4
@@ -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;
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -3,7 +3,7 @@ class Test {
|
||||
private final String string;
|
||||
|
||||
Test() {
|
||||
<caret>string = "";
|
||||
string = "";<caret>
|
||||
myTimer = string;
|
||||
}
|
||||
}
|
||||
+2
-2
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user