don't add annotation attribute braces when typing comma inside string (IDEA-177182)

This commit is contained in:
peter
2017-08-09 18:40:09 +02:00
parent 3d1ba95725
commit 45f9ede9ac
4 changed files with 11 additions and 1 deletions
@@ -0,0 +1,4 @@
public @interface Category {
String[] value();
}
@Category("foo,<caret>")
@@ -0,0 +1,4 @@
public @interface Category {
String[] value();
}
@Category("foo<caret>")