Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/collapseAnnotationsFix/beforeArray.java
Tagir Valeev 2ba9a65828 IDEA-167980 Add quick fix to merge two annotations which are not marked as repeatable
GitOrigin-RevId: 6cc5742354b484ea996ec6a0d2bfa29f3013a08a
2019-05-30 12:07:55 +03:00

5 lines
119 B
Java

// "Collapse repeating annotations" "true"
@SuppressWarnings({"foo", "bar"})
@<caret>SuppressWarnings("baz")
class X{}