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 ce73bd890e50fcb88d362fc8298f31fa90d802aa Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jul 26 08:46:43 2025 -0400 Javadoc --- .../java/org/apache/commons/compress/java/util/jar/Pack200.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/java/util/jar/Pack200.java b/src/main/java/org/apache/commons/compress/java/util/jar/Pack200.java index eb0591ece..a5fdd31ba 100644 --- a/src/main/java/org/apache/commons/compress/java/util/jar/Pack200.java +++ b/src/main/java/org/apache/commons/compress/java/util/jar/Pack200.java @@ -150,7 +150,7 @@ public interface Packer { * Packs the specified JAR file to the specified output stream. * * @param in JAR file to be compressed. - * @param out stream of compressed data. + * @param out target output stream for the compressed data. * @throws IOException if I/O exception occurs. */ void pack(JarFile in, OutputStream out) throws IOException; @@ -158,8 +158,8 @@ public interface Packer { /** * Packs the data from the specified jar input stream to the specified output stream. * - * @param in stream of uncompressed JAR data. - * @param out stream of compressed data. + * @param in input stream of uncompressed JAR data. + * @param out target output stream for the compressed data. * @throws IOException if I/O exception occurs. */ void pack(JarInputStream in, OutputStream out) throws IOException;