Skip to content

Commit d7975e6

Browse files
committed
Javadoc
More precise documentation.
1 parent 7530557 commit d7975e6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/**
2323
* Never writes data. Calls never go beyond this class.
2424
* <p>
25-
* This output stream has no destination (file/socket etc.) and all bytes written to it are ignored.
25+
* This output stream has no destination and all bytes written to it are ignored.
2626
* </p>
2727
*/
2828
public class NullOutputStream extends OutputStream {
@@ -58,7 +58,7 @@ public NullOutputStream() {
5858
/**
5959
* Does nothing.
6060
*
61-
* @param b The This method ignored this parameter.
61+
* @param b The This method ignores this parameter.
6262
* @throws IOException This method never throws any exceptions.
6363
*/
6464
@Override
@@ -69,9 +69,9 @@ public void write(final byte[] b) throws IOException {
6969
/**
7070
* Does nothing.
7171
*
72-
* @param b This method ignored this parameter.
73-
* @param off This method ignored this parameter.
74-
* @param len This method ignored this parameter.
72+
* @param b This method ignores this parameter.
73+
* @param off This method ignores this parameter.
74+
* @param len This method ignores this parameter.
7575
*/
7676
@Override
7777
public void write(final byte[] b, final int off, final int len) {
@@ -81,7 +81,7 @@ public void write(final byte[] b, final int off, final int len) {
8181
/**
8282
* Does nothing.
8383
*
84-
* @param b This method ignored this parameter.
84+
* @param b This method ignores this parameter.
8585
*/
8686
@Override
8787
public void write(final int b) {

0 commit comments

Comments
 (0)