mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
IDEA-202262 Wrong cursor position, when IDEA autocompletes List.of(), Set.of() and other Java 9 factory methods for Collections
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class C {
|
||||
void method() {}
|
||||
void method(String s) {}
|
||||
void method(String... s) {}
|
||||
void method1(String... s) {}
|
||||
|
||||
{
|
||||
me<caret>
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
class C {
|
||||
void method() {}
|
||||
void method(String s) {}
|
||||
void method(String... s) {}
|
||||
void method1(String... s) {}
|
||||
|
||||
{
|
||||
method(<caret>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user