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 c1190e0066163e1448b41b5939a9fbe3a63432e7 Author: Gary D. Gregory <garydgreg...@gmail.com> AuthorDate: Sun Apr 13 16:24:48 2025 -0400 Javadoc --- src/main/java/org/apache/commons/compress/utils/BitInputStream.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/utils/BitInputStream.java b/src/main/java/org/apache/commons/compress/utils/BitInputStream.java index c89b33441..07dcdc688 100644 --- a/src/main/java/org/apache/commons/compress/utils/BitInputStream.java +++ b/src/main/java/org/apache/commons/compress/utils/BitInputStream.java @@ -127,7 +127,7 @@ private boolean ensureCache(final int count) throws IOException { } /** - * Returns the number of bytes read from the underlying stream. + * Gets the number of bytes read from the underlying stream. * <p> * This includes the bytes read to fill the current cache and not read as bits so far. * </p> @@ -168,7 +168,7 @@ private long processBitsGreater57(final int count) throws IOException { } /** - * Returns the next bit read from the underlying stream. + * Reads and returns the next bit read from the underlying stream. * * @return the next bit (0 or 1) or -1 if the end of the stream has been reached * @throws IOException if an I/O error occurs. @@ -179,7 +179,7 @@ public int readBit() throws IOException { } /** - * Returns at most 63 bits read from the underlying stream. + * Reads and returns at most 63 bits read from the underlying stream. * * @param count the number of bits to read, must be a positive number not bigger than 63. * @return the bits concatenated as a long using the stream's byte order. -1 if the end of the underlying stream has been reached before reading the