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

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


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

commit f3ebcc46a8e6a50e1e145ef9ac92e50eade5d97a
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Aug 2 15:30:27 2026 -0400

    Javadoc
---
 .../org/apache/commons/codec/binary/BaseNCodecInputStream.java    | 4 ++--
 .../org/apache/commons/codec/binary/BaseNCodecOutputStream.java   | 8 ++++----
 src/main/java/org/apache/commons/codec/cli/Digest.java            | 2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java 
b/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java
index ccf4d5c8..cb70108a 100644
--- a/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java
+++ b/src/main/java/org/apache/commons/codec/binary/BaseNCodecInputStream.java
@@ -185,7 +185,7 @@ public class BaseNCodecInputStream<C extends BaseNCodec, T 
extends BaseNCodecInp
      * Reads one {@code byte} from this input stream.
      *
      * @return The byte as an integer in the range 0 to 255. Returns -1 if EOF 
has been reached.
-     * @throws IOException if an I/O error occurs.
+     * @throws IOException Thrown if an I/O error occurs.
      */
     @Override
     public int read() throws IOException {
@@ -257,7 +257,7 @@ public class BaseNCodecInputStream<C extends BaseNCodec, T 
extends BaseNCodecInp
      * The {@link #reset} method of {@link BaseNCodecInputStream} does nothing 
except throw an {@link IOException}.
      * </p>
      *
-     * @throws IOException if this method is invoked.
+     * @throws IOException Thrown if this method is invoked.
      * @since 1.7
      */
     @Override
diff --git 
a/src/main/java/org/apache/commons/codec/binary/BaseNCodecOutputStream.java 
b/src/main/java/org/apache/commons/codec/binary/BaseNCodecOutputStream.java
index ae5bcdf7..73031947 100644
--- a/src/main/java/org/apache/commons/codec/binary/BaseNCodecOutputStream.java
+++ b/src/main/java/org/apache/commons/codec/binary/BaseNCodecOutputStream.java
@@ -128,7 +128,7 @@ public class BaseNCodecOutputStream<C extends BaseNCodec, T 
extends BaseNCodecOu
      * <a href= 
"https://commons.apache.org/proper/commons-io/apidocs/org/apache/commons/io/output/CloseShieldOutputStream.html";
 >CloseShieldOutputStream</a>.
      * </p>
      *
-     * @throws IOException if an I/O error occurs.
+     * @throws IOException Thrown if an I/O error occurs.
      */
     @Override
     public void close() throws IOException {
@@ -154,7 +154,7 @@ public class BaseNCodecOutputStream<C extends BaseNCodec, T 
extends BaseNCodecOu
     /**
      * Flushes this output stream and forces any buffered output bytes to be 
written out to the stream.
      *
-     * @throws IOException if an I/O error occurs.
+     * @throws IOException Thrown if an I/O error occurs.
      */
     @Override
     public void flush() throws IOException {
@@ -166,7 +166,7 @@ public class BaseNCodecOutputStream<C extends BaseNCodec, T 
extends BaseNCodecOu
      * flushed.
      *
      * @param propagate boolean flag to indicate whether the wrapped 
OutputStream should also be flushed.
-     * @throws IOException if an I/O error occurs.
+     * @throws IOException Thrown if an I/O error occurs.
      */
     private void flush(final boolean propagate) throws IOException {
         final int avail = baseNCodec.available(context);
@@ -226,7 +226,7 @@ public class BaseNCodecOutputStream<C extends BaseNCodec, T 
extends BaseNCodecOu
      * Writes the specified {@code byte} to this output stream.
      *
      * @param i source byte.
-     * @throws IOException if an I/O error occurs.
+     * @throws IOException Thrown if an I/O error occurs.
      */
     @Override
     public void write(final int i) throws IOException {
diff --git a/src/main/java/org/apache/commons/codec/cli/Digest.java 
b/src/main/java/org/apache/commons/codec/cli/Digest.java
index 91f3651d..8d4ba696 100644
--- a/src/main/java/org/apache/commons/codec/cli/Digest.java
+++ b/src/main/java/org/apache/commons/codec/cli/Digest.java
@@ -49,7 +49,7 @@ public class Digest {
      *
      * @param args {@code args[0]} is one of {@link MessageDigestAlgorithms} 
name, {@link MessageDigest} name, {@code ALL}, or {@code *}. {@code args[1+]} 
is a
      *             FILE/DIRECTORY/String.
-     * @throws IOException if an error occurs.
+     * @throws IOException Thrown if an error occurs.
      */
     public static void main(final String[] args) throws IOException {
         new Digest(args).run();

Reply via email to