Skip to content

Commit f9e9de2

Browse files
committed
Rename parameter to match override
1 parent 95c1944 commit f9e9de2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,10 +122,10 @@ public void write(final char[] chr, final int st, final int end) {
122122

123123
/**
124124
* Does nothing - output to {@code /dev/null}.
125-
* @param idx The character to write
125+
* @param b The character to write.
126126
*/
127127
@Override
128-
public void write(final int idx) {
128+
public void write(final int b) {
129129
//to /dev/null
130130
}
131131

0 commit comments

Comments
 (0)