mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 07:40:42 +07:00
position caret to the next probable editing location after inserting type arguments (IDEA-26763)
This commit is contained in:
+2
-2
@@ -1,5 +1,5 @@
|
||||
class HashMap<T,V> {}
|
||||
import java.util.HashMap;
|
||||
|
||||
public class A {
|
||||
private HashMap<String, String> m = new HashMap<String, String><caret>();
|
||||
private HashMap<String, String> m = new HashMap<String, String>(<caret>);
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
class HashMap<T,V> {}
|
||||
import java.util.HashMap;
|
||||
|
||||
public class A {
|
||||
private HashMap<String, String> m = new HashMap<<caret>>();
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
|
||||
class Test<T> {
|
||||
Test<String> test = new Test<String><caret>
|
||||
Test<String> test = new Test<String>();<caret>
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
class AAAAA<K,V>{
|
||||
AAAAA<K,V> asd = new AAAAA<K, V><caret>
|
||||
AAAAA<K,V> asd = new AAAAA<K, V>();<caret>
|
||||
}
|
||||
Reference in New Issue
Block a user