javadocs fixes

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1738789 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Javen O'Neal 2016-04-12 12:19:49 +00:00
parent a4af4fc6c3
commit d94ff1aa8e
1 changed files with 2 additions and 2 deletions

View File

@ -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--) {