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


The following commit(s) were added to refs/heads/master by this push:
     new ec9f2d72b Javadoc
ec9f2d72b is described below

commit ec9f2d72bb702f0f093ad26b4826e6a87795d975
Author: Gary D. Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Apr 27 10:18:18 2025 -0400

    Javadoc
---
 .../commons/compress/archivers/zip/ZipArchiveOutputStream.java | 10 +++++-----
 .../org/apache/commons/compress/harmony/pack200/BandSet.java   |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java
 
b/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java
index 8c46eb913..648a37460 100644
--- 
a/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java
+++ 
b/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java
@@ -1656,7 +1656,7 @@ protected void writeCentralFileHeader(final 
ZipArchiveEntry ze) throws IOExcepti
     }
 
     /**
-     * Write bytes to output or random access file.
+     * Writes bytes to output or random access file.
      *
      * @param data the byte array to write
      * @throws IOException on error
@@ -1721,7 +1721,7 @@ private void writeLocalFileHeader(final ZipArchiveEntry 
ze, final boolean phased
     }
 
     /**
-     * Write bytes to output or random access file.
+     * Writes bytes to output or random access file.
      *
      * @param data the byte array to write
      * @throws IOException on error
@@ -1731,7 +1731,7 @@ protected final void writeOut(final byte[] data) throws 
IOException {
     }
 
     /**
-     * Write bytes to output or random access file.
+     * Writes bytes to output or random access file.
      *
      * @param data   the byte array to write
      * @param offset the start position to write from
@@ -1743,7 +1743,7 @@ protected final void writeOut(final byte[] data, final 
int offset, final int len
     }
 
     /**
-     * Write preamble data. For most of the time, this is used to make 
self-extracting zips.
+     * Writes preamble data. For most of the time, this is used to make 
self-extracting zips.
      *
      * @param preamble data to write
      * @throws IOException if an entry already exists
@@ -1754,7 +1754,7 @@ public void writePreamble(final byte[] preamble) throws 
IOException {
     }
 
     /**
-     * Write preamble data. For most of the time, this is used to make 
self-extracting zips.
+     * Writes preamble data. For most of the time, this is used to make 
self-extracting zips.
      *
      * @param preamble data to write
      * @param offset   the start offset in the data
diff --git 
a/src/main/java/org/apache/commons/compress/harmony/pack200/BandSet.java 
b/src/main/java/org/apache/commons/compress/harmony/pack200/BandSet.java
index c0ee1426a..e3f0bb664 100644
--- a/src/main/java/org/apache/commons/compress/harmony/pack200/BandSet.java
+++ b/src/main/java/org/apache/commons/compress/harmony/pack200/BandSet.java
@@ -706,7 +706,7 @@ protected long[] longListToArray(final List<Long> longList) 
{
     }
 
     /**
-     * Write the packed set of bands to the given output stream
+     * Writes the packed set of bands to the given output stream
      *
      * @param out TODO
      * @throws IOException      If an I/O error occurs.

Reply via email to