From d94ff1aa8e92b443e06008c35e49a6d1f5f891ea Mon Sep 17 00:00:00 2001 From: Javen O'Neal Date: Tue, 12 Apr 2016 12:19:49 +0000 Subject: [PATCH] javadocs fixes git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1738789 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/poi/util/RLEDecompressingInputStream.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/apache/poi/util/RLEDecompressingInputStream.java b/src/java/org/apache/poi/util/RLEDecompressingInputStream.java index 77f84d778..08d9c2f98 100644 --- a/src/java/org/apache/poi/util/RLEDecompressingInputStream.java +++ b/src/java/org/apache/poi/util/RLEDecompressingInputStream.java @@ -150,7 +150,7 @@ public class RLEDecompressingInputStream extends InputStream { /** * Reads a single chunk from the underlying inputstream. * - * @return + * @return number of bytes that were read, or -1 if the end of the stream was reached. * @throws IOException */ private int readChunk() throws IOException { @@ -216,7 +216,7 @@ public class RLEDecompressingInputStream extends InputStream { * Helper method to determine how many bits in the CopyToken are used for the CopyLength. * * @param offset - * @return + * @return returns the number of bits in the copy token (a value between 4 and 12) */ static int getCopyLenBits(int offset) { for (int n = 11; n >= 4; n--) {