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 26642eef7 Javadoc 26642eef7 is described below commit 26642eef742e84877b5dd47e6a8ae2bbd4ce3c27 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Jan 17 09:25:28 2024 -0500 Javadoc --- .../java/org/apache/commons/compress/archivers/ArchiveInputStream.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/org/apache/commons/compress/archivers/ArchiveInputStream.java b/src/main/java/org/apache/commons/compress/archivers/ArchiveInputStream.java index 8787cceee..f135b9bf6 100644 --- a/src/main/java/org/apache/commons/compress/archivers/ArchiveInputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/ArchiveInputStream.java @@ -35,6 +35,7 @@ import org.apache.commons.io.input.NullInputStream; * <p> * The input stream classes must also implement a method with the signature: * </p> + * * <pre> * public static boolean matches(byte[] signature, int length) * </pre> @@ -65,6 +66,7 @@ public abstract class ArchiveInputStream<E extends ArchiveEntry> extends FilterI /** * Constructs a new instance. * + * @param inputStream the underlying input stream, or {@code null} if this instance is to be created without an underlying stream. * @param charset charset. * @since 1.26.0 */ @@ -77,6 +79,7 @@ public abstract class ArchiveInputStream<E extends ArchiveEntry> extends FilterI /** * Constructs a new instance. * + * @param inputStream the underlying input stream, or {@code null} if this instance is to be created without an underlying stream. * @param charsetName charset name. * @since 1.26.0 */