This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-compress.git
commit a88121537704677895a6c58293e73604378ecf7b Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Fri Apr 11 10:22:53 2025 -0400 Javadoc --- .../bytecode/RuntimeVisibleorInvisibleAnnotationsAttribute.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/java/org/apache/commons/compress/harmony/unpack200/bytecode/RuntimeVisibleorInvisibleAnnotationsAttribute.java b/src/main/java/org/apache/commons/compress/harmony/unpack200/bytecode/RuntimeVisibleorInvisibleAnnotationsAttribute.java index df48ddc8b..8de517b1e 100644 --- a/src/main/java/org/apache/commons/compress/harmony/unpack200/bytecode/RuntimeVisibleorInvisibleAnnotationsAttribute.java +++ b/src/main/java/org/apache/commons/compress/harmony/unpack200/bytecode/RuntimeVisibleorInvisibleAnnotationsAttribute.java @@ -30,6 +30,12 @@ public class RuntimeVisibleorInvisibleAnnotationsAttribute extends AnnotationsAt private final Annotation[] annotations; + /** + * Constructs a new instance for an attribute name. + * + * @param name an attribute name. + * @param annotations Annotations. + */ public RuntimeVisibleorInvisibleAnnotationsAttribute(final CPUTF8 name, final Annotation[] annotations) { super(name); this.annotations = annotations;