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 661bdcc71b3d3dfd919d08f79b49d0438e5cc0e5
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Apr 9 16:38:03 2025 -0400

    Javadoc
---
 .../compress/archivers/zip/UnicodeCommentExtraField.java       | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/compress/archivers/zip/UnicodeCommentExtraField.java
 
b/src/main/java/org/apache/commons/compress/archivers/zip/UnicodeCommentExtraField.java
index ffb8cf731..05b1d21a1 100644
--- 
a/src/main/java/org/apache/commons/compress/archivers/zip/UnicodeCommentExtraField.java
+++ 
b/src/main/java/org/apache/commons/compress/archivers/zip/UnicodeCommentExtraField.java
@@ -31,13 +31,19 @@
  */
 public class UnicodeCommentExtraField extends AbstractUnicodeExtraField {
 
+    /**
+     * Field ID.
+     */
     public static final ZipShort UCOM_ID = new ZipShort(0x6375);
 
+    /**
+     * Constructs a new instance.
+     */
     public UnicodeCommentExtraField() {
     }
 
     /**
-     * Assemble as unicode comment extension from the comment given as text as 
well as the bytes actually written to the archive.
+     * Constructs a new instance as Unicode comment extension from the comment 
given as text as well as the bytes actually written to the archive.
      *
      * @param comment The file comment
      * @param bytes   the bytes actually written to the archive
@@ -47,7 +53,7 @@ public UnicodeCommentExtraField(final String comment, final 
byte[] bytes) {
     }
 
     /**
-     * Assemble as unicode comment extension from the name given as text as 
well as the encoded bytes actually written to the archive.
+     * Assemble as Unicode comment extension from the name given as text as 
well as the encoded bytes actually written to the archive.
      *
      * @param text  The file name
      * @param bytes the bytes actually written to the archive

Reply via email to