mirror of https://github.com/apache/poi.git
javadocs fixes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1738789 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2f703ce676
commit
fd50426dc6
|
@ -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--) {
|
||||
|
|
Loading…
Reference in New Issue