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 794696e10e0fd98231386fc0733b47bf3dc0524a Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Wed Dec 11 08:16:15 2024 -0500 Javadoc --- .../apache/commons/compress/compressors/CompressorOutputStream.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/compressors/CompressorOutputStream.java b/src/main/java/org/apache/commons/compress/compressors/CompressorOutputStream.java index bd91dacc4..d5dd2c308 100644 --- a/src/main/java/org/apache/commons/compress/compressors/CompressorOutputStream.java +++ b/src/main/java/org/apache/commons/compress/compressors/CompressorOutputStream.java @@ -24,12 +24,12 @@ import java.io.OutputStream; /** * Abstracts all classes that compress an output stream. * - * @param <T> The underlying OutputStream type. + * @param <T> The underlying {@link OutputStream} type. */ public abstract class CompressorOutputStream<T extends OutputStream> extends FilterOutputStream { /** - * Constructs a new instance without a backing OutputStream. + * Constructs a new instance without a backing {@link OutputStream}. * <p> * You must initialize {@code this.out} after construction. * </p> @@ -39,7 +39,7 @@ public abstract class CompressorOutputStream<T extends OutputStream> extends Fil } /** - * Creates an output stream filter built on top of the specified underlying output stream. + * Creates an output stream filter built on top of the specified underlying {@link OutputStream}. * * @param out the underlying output stream to be assigned to the field {@code this.out} for later use, or {@code null} if this instance is to be created * without an underlying stream.