mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
IDEA-96661 Java completion: don't add {} tail after array completion variant
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
||||
class Super {
|
||||
void foo(String[] params, int... indices) {
|
||||
foo(new String[]{<caret>}, 0);
|
||||
foo(new String[<caret>], 0);
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -4,6 +4,6 @@ class MyException extends RuntimeException {
|
||||
|
||||
class XXX {
|
||||
{
|
||||
throw new MyException(new String[]{<caret>});
|
||||
throw new MyException(new String[<caret>]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user