This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git


The following commit(s) were added to refs/heads/master by this push:
     new d7975e669 Javadoc
d7975e669 is described below

commit d7975e6698cf994db6653b982ba5e510e753a7cd
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Nov 13 14:58:18 2024 -0500

    Javadoc
    
    More precise documentation.
---
 .../java/org/apache/commons/io/output/NullOutputStream.java  | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/output/NullOutputStream.java 
b/src/main/java/org/apache/commons/io/output/NullOutputStream.java
index f0212d116..55cd98c02 100644
--- a/src/main/java/org/apache/commons/io/output/NullOutputStream.java
+++ b/src/main/java/org/apache/commons/io/output/NullOutputStream.java
@@ -22,7 +22,7 @@ import java.io.OutputStream;
 /**
  * Never writes data. Calls never go beyond this class.
  * <p>
- * This output stream has no destination (file/socket etc.) and all bytes 
written to it are ignored.
+ * This output stream has no destination and all bytes written to it are 
ignored.
  * </p>
  */
 public class NullOutputStream extends OutputStream {
@@ -58,7 +58,7 @@ public class NullOutputStream extends OutputStream {
     /**
      * Does nothing.
      *
-     * @param b The This method ignored this parameter.
+     * @param b The This method ignores this parameter.
      * @throws IOException This method never throws any exceptions.
      */
     @Override
@@ -69,9 +69,9 @@ public class NullOutputStream extends OutputStream {
     /**
      * Does nothing.
      *
-     * @param b This method ignored this parameter.
-     * @param off This method ignored this parameter.
-     * @param len This method ignored this parameter.
+     * @param b This method ignores this parameter.
+     * @param off This method ignores this parameter.
+     * @param len This method ignores this parameter.
      */
     @Override
     public void write(final byte[] b, final int off, final int len) {
@@ -81,7 +81,7 @@ public class NullOutputStream extends OutputStream {
     /**
      * Does nothing.
      *
-     * @param b This method ignored this parameter.
+     * @param b This method ignores this parameter.
      */
     @Override
     public void write(final int b) {

Reply via email to