Add quick fix to remove duplicate annotation without parameters (IDEA-249508)

GitOrigin-RevId: fea7daeb0bb40724325182d6041a20aa141fbbf2
This commit is contained in:
Bas Leijdekkers
2020-11-23 21:56:24 +00:00
committed by intellij-monorepo-bot
parent f0726e3181
commit 4b18db9bfb
3 changed files with 19 additions and 2 deletions
@@ -0,0 +1,5 @@
// "Remove" "true"
@XYZ
class X{}
@interface XYZ {}
@@ -0,0 +1,6 @@
// "Remove" "true"
@X<caret>YZ
@XYZ
class X{}
@interface XYZ {}