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 309588c087397c1533b8aea529fd0493452715e4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat May 18 09:44:46 2024 -0400 Javadoc --- .../apache/commons/compress/archivers/zip/ZipArchiveInputStream.java | 4 ++-- .../java/org/apache/commons/compress/compressors/lz4/XXHash32.java | 2 +- .../commons/compress/utils/MultiReadOnlySeekableByteChannel.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.java b/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.java index ef92fe4f4..500f32345 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveInputStream.java @@ -990,7 +990,7 @@ public class ZipArchiveInputStream extends ArchiveInputStream<ZipArchiveEntry> i } /** - * Implementation of read for DEFLATED entries. + * Implements read for DEFLATED entries. */ private int readDeflated(final byte[] buffer, final int offset, final int length) throws IOException { final int read = readFromInflater(buffer, offset, length); @@ -1140,7 +1140,7 @@ public class ZipArchiveInputStream extends ArchiveInputStream<ZipArchiveEntry> i } /** - * Implementation of read for STORED entries. + * Implements read for STORED entries. */ private int readStored(final byte[] buffer, final int offset, final int length) throws IOException { diff --git a/src/main/java/org/apache/commons/compress/compressors/lz4/XXHash32.java b/src/main/java/org/apache/commons/compress/compressors/lz4/XXHash32.java index 58ef61c6e..5080c90db 100644 --- a/src/main/java/org/apache/commons/compress/compressors/lz4/XXHash32.java +++ b/src/main/java/org/apache/commons/compress/compressors/lz4/XXHash32.java @@ -19,7 +19,7 @@ package org.apache.commons.compress.compressors.lz4; /** - * Implementation of the xxhash32 hash algorithm. + * Implements the xxhash32 hash algorithm. * * @see <a href="https://cyan4973.github.io/xxHash/">xxHash</a> * @NotThreadSafe diff --git a/src/main/java/org/apache/commons/compress/utils/MultiReadOnlySeekableByteChannel.java b/src/main/java/org/apache/commons/compress/utils/MultiReadOnlySeekableByteChannel.java index e7bcae73f..cbe62d5de 100644 --- a/src/main/java/org/apache/commons/compress/utils/MultiReadOnlySeekableByteChannel.java +++ b/src/main/java/org/apache/commons/compress/utils/MultiReadOnlySeekableByteChannel.java @@ -33,7 +33,7 @@ import java.util.List; import java.util.Objects; /** - * Read-Only Implementation of {@link SeekableByteChannel} that concatenates a collection of other {@link SeekableByteChannel}s. + * Implements a read-only {@link SeekableByteChannel} that concatenates a collection of other {@link SeekableByteChannel}s. * <p> * This is a lose port of <a href= * "https://github.com/frugalmechanic/fm-common/blob/master/jvm/src/main/scala/fm/common/MultiReadOnlySeekableByteChannel.scala">