surround with quotes in annotation params work for unresolved refs

IDEA-188826
This commit is contained in:
Anna.Kozlova
2018-04-24 18:30:53 +02:00
parent a7da5544e8
commit 2800ac30f3
4 changed files with 50 additions and 5 deletions
@@ -0,0 +1,9 @@
// "Surround annotation parameter value with quotes" "true"
class X {
@SuppressWarnings("unused")
void m() {
}
}
@@ -0,0 +1,9 @@
// "Surround annotation parameter value with quotes" "true"
class X {
@SuppressWarnings(unu<caret>sed)
void m() {
}
}