mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
IDEA-46653 Completion in parameter list should not insert a trailing comma if the following parameter is varargs
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
class Foooo {
|
||||
int bar(int a, Object... varargs) {}
|
||||
|
||||
int foo() {
|
||||
bar(hashCode())<caret>;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
class Foooo {
|
||||
int bar(int a, Object... varargs) {}
|
||||
|
||||
int foo() {
|
||||
bar(ha<caret>);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user