We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c9c59c commit 95c1944Copy full SHA for 95c1944
src/main/java/org/apache/commons/io/input/ProxyReader.java
@@ -120,13 +120,13 @@ protected void handleIOException(final IOException e) throws IOException {
120
121
/**
122
* Invokes the delegate's {@code mark(int)} method.
123
- * @param idx read ahead limit
+ * @param readAheadLimit read ahead limit
124
* @throws IOException if an I/O error occurs.
125
*/
126
@Override
127
- public synchronized void mark(final int idx) throws IOException {
+ public synchronized void mark(final int readAheadLimit) throws IOException {
128
try {
129
- in.mark(idx);
+ in.mark(readAheadLimit);
130
} catch (final IOException e) {
131
handleIOException(e);
132
}
0 commit comments