src/share/classes/com/sun/tools/javac/comp/Annotate.java

Print this page

        

@@ -539,11 +539,11 @@
         // Fetch the Repeatable annotation from the current
         // annotation's declaration, or null if it has none
         Attribute.Compound ca = origAnnoDecl.attribute(syms.repeatableType.tsym);
         if (ca == null) { // has no Repeatable annotation
             if (reportError)
-                log.error(pos, "duplicate.annotation.missing.container", origAnnoType, syms.repeatableType);
+                log.error(pos, "duplicate.annotation.missing.containing.type", origAnnoType, syms.repeatableType);
             return null;
         }
 
         return filterSame(extractContainingType(ca, pos, origAnnoDecl),
                           origAnnoType);