summaryrefslogtreecommitdiffstats
path: root/poi
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2022-02-21 22:56:30 +0000
committerAndreas Beeker <kiwiwings@apache.org>2022-02-21 22:56:30 +0000
commita881c381db69aeb4cf8622c57dfff247fc084c60 (patch)
treede7a7ab4eb2d4b4d54c497dcafb58e809562ac28 /poi
parent8c6172c772f44874dea728319077252b1d460fd3 (diff)
downloadpoi-a881c381db69aeb4cf8622c57dfff247fc084c60.tar.gz
poi-a881c381db69aeb4cf8622c57dfff247fc084c60.zip
#65908 - XAdES-XL modifications due to specification check errors
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898287 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'poi')
-rw-r--r--poi/src/main/java/org/apache/poi/util/IOUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/poi/src/main/java/org/apache/poi/util/IOUtils.java b/poi/src/main/java/org/apache/poi/util/IOUtils.java
index 1ab9f9cae9..eca80ac4c1 100644
--- a/poi/src/main/java/org/apache/poi/util/IOUtils.java
+++ b/poi/src/main/java/org/apache/poi/util/IOUtils.java
@@ -160,7 +160,7 @@ public final class IOUtils {
* Reads up to {@code length} bytes from the input stream, and returns the bytes read.
*
* @param stream The byte stream of data to read.
- * @param length The maximum length to read, use {@link Integer#MAX_VALUE} to read the stream
+ * @param length The maximum length to read, use {@link Integer#MIN_VALUE} to read the stream
* until EOF
* @param maxLength if the input is equal to/longer than {@code maxLength} bytes,
* then throw an {@link IOException} complaining about the length.