Skip to content

Commit 4e2320c

Browse files
committed
2 parents f9e9de2 + ab21dfe commit 4e2320c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/apache/commons/io/output/ProxyOutputStream.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,14 +219,14 @@ public void write(final byte[] bts, final int st, final int end) throws IOExcept
219219

220220
/**
221221
* Invokes the delegate's {@code write(int)} method.
222-
* @param idx the byte to write
222+
* @param b the byte to write
223223
* @throws IOException if an I/O error occurs.
224224
*/
225225
@Override
226-
public void write(final int idx) throws IOException {
226+
public void write(final int b) throws IOException {
227227
try {
228228
beforeWrite(1);
229-
out.write(idx);
229+
out.write(b);
230230
afterWrite(1);
231231
} catch (final IOException e) {
232232
handleIOException(e);

0 commit comments

Comments
 (0)