Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Dec 11, 2024
1 parent 0bd14b9 commit 794696e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
/**
* 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>
Expand All @@ -39,7 +39,7 @@ public CompressorOutputStream() {
}

/**
* 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.
Expand Down

0 comments on commit 794696e

Please sign in to comment.