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 65d00222c Javadoc 65d00222c is described below commit 65d00222c52bd779f05408a709cca23c0fc29033 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri Jul 5 11:43:35 2024 -0400 Javadoc Whitespace --- .../apache/commons/compress/compressors/CompressorInputStream.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/compressors/CompressorInputStream.java b/src/main/java/org/apache/commons/compress/compressors/CompressorInputStream.java index 76cfff67c..51369899b 100644 --- a/src/main/java/org/apache/commons/compress/compressors/CompressorInputStream.java +++ b/src/main/java/org/apache/commons/compress/compressors/CompressorInputStream.java @@ -21,6 +21,7 @@ package org.apache.commons.compress.compressors; import java.io.InputStream; public abstract class CompressorInputStream extends InputStream { + private long bytesRead; /** @@ -46,7 +47,7 @@ public abstract class CompressorInputStream extends InputStream { } /** - * Returns the current number of bytes read from this stream. + * Gets the current number of bytes read from this stream. * * @return the number of read bytes * @@ -57,7 +58,7 @@ public abstract class CompressorInputStream extends InputStream { } /** - * Returns the current number of bytes read from this stream. + * Gets the current number of bytes read from this stream. * * @return the number of read bytes * @deprecated this method may yield wrong results for large archives, use #getBytesRead instead @@ -68,7 +69,7 @@ public abstract class CompressorInputStream extends InputStream { } /** - * Returns the amount of raw or compressed bytes read by the stream. + * Gets the amount of raw or compressed bytes read by the stream. * * <p> * This implementation invokes {@link #getBytesRead}.