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

commit 11c0562b0b0159484fcb412339914f7de498a289
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Dec 13 07:53:04 2025 -0500

    Javadoc
---
 src/main/java/org/apache/commons/io/IOUtils.java | 46 ++++++++++++------------
 1 file changed, 23 insertions(+), 23 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/IOUtils.java 
b/src/main/java/org/apache/commons/io/IOUtils.java
index 8a4057ae5..e263e118c 100644
--- a/src/main/java/org/apache/commons/io/IOUtils.java
+++ b/src/main/java/org/apache/commons/io/IOUtils.java
@@ -558,11 +558,11 @@ private static char[] charArray(final int size) {
      * }
      * </code></pre>
      *
-     * @param array the array against which the range is validated
-     * @param off   the starting offset into the array (inclusive)
-     * @param len   the number of elements to access
-     * @throws NullPointerException      if {@code array} is {@code null}
-     * @throws IndexOutOfBoundsException if the range {@code [off, off + len)} 
is out of bounds for {@code array}
+     * @param array the array against which the range is validated.
+     * @param off   the starting offset into the array (inclusive).
+     * @param len   the number of elements to access.
+     * @throws NullPointerException      if {@code array} is {@code null}.
+     * @throws IndexOutOfBoundsException if the range {@code [off, off + len)} 
is out of bounds for {@code array}.
      * @see InputStream#read(byte[], int, int)
      * @see OutputStream#write(byte[], int, int)
      * @since 2.21.0
@@ -605,11 +605,11 @@ public static void checkFromIndexSize(final byte[] array, 
final int off, final i
      * }
      * </code></pre>
      *
-     * @param array the array against which the range is validated
-     * @param off   the starting offset into the array (inclusive)
-     * @param len   the number of characters to access
-     * @throws NullPointerException      if {@code array} is {@code null}
-     * @throws IndexOutOfBoundsException if the range {@code [off, off + len)} 
is out of bounds for {@code array}
+     * @param array the array against which the range is validated.
+     * @param off   the starting offset into the array (inclusive).
+     * @param len   the number of characters to access.
+     * @throws NullPointerException      if {@code array} is {@code null}.
+     * @throws IndexOutOfBoundsException if the range {@code [off, off + len)} 
is out of bounds for {@code array}.
      * @see Reader#read(char[], int, int)
      * @see Writer#write(char[], int, int)
      * @since 2.21.0
@@ -648,11 +648,11 @@ static void checkFromIndexSize(final int off, final int 
len, final int arrayLeng
      * }
      * </code></pre>
      *
-     * @param str the string against which the range is validated
-     * @param off the starting offset into the string (inclusive)
-     * @param len the number of characters to write
-     * @throws NullPointerException      if {@code str} is {@code null}
-     * @throws IndexOutOfBoundsException if the range {@code [off, off + len)} 
is out of bounds for {@code str}
+     * @param str the string against which the range is validated.
+     * @param off the starting offset into the string (inclusive).
+     * @param len the number of characters to write.
+     * @throws NullPointerException      if {@code str} is {@code null}.
+     * @throws IndexOutOfBoundsException if the range {@code [off, off + len)} 
is out of bounds for {@code str}.
      * @see Writer#write(String, int, int)
      * @since 2.21.0
      */
@@ -684,10 +684,10 @@ public static void checkFromIndexSize(final String str, 
final int off, final int
      * }
      * </code></pre>
      *
-     * @param seq       the character sequence to validate (may be {@code 
null}, treated as {@code "null"})
-     * @param fromIndex the starting index (inclusive)
-     * @param toIndex   the ending index (exclusive)
-     * @throws IndexOutOfBoundsException if the range {@code [fromIndex, 
toIndex)} is out of bounds for {@code seq}
+     * @param seq       the character sequence to validate (may be {@code 
null}, treated as {@code "null"}).
+     * @param fromIndex the starting index (inclusive).
+     * @param toIndex   the ending index (exclusive).
+     * @throws IndexOutOfBoundsException if the range {@code [fromIndex, 
toIndex)} is out of bounds for {@code seq}.
      * @see Appendable#append(CharSequence, int, int)
      * @since 2.21.0
      */
@@ -1889,10 +1889,10 @@ public static long copyLarge(final Reader reader, final 
Writer writer) throws IO
      *
      * @param reader the {@link Reader} to source.
      * @param writer the {@link Writer} to target.
-     * @param buffer the buffer to be used for the copy
-     * @return the number of characters copied
-     * @throws NullPointerException if the input or output is null
-     * @throws IOException          if an I/O error occurs
+     * @param buffer the buffer to be used for the copy.
+     * @return the number of characters copied.
+     * @throws NullPointerException if the input or output is null.
+     * @throws IOException          if an I/O error occurs.
      * @since 2.2
      */
     public static long copyLarge(final Reader reader, final Writer writer, 
final char[] buffer) throws IOException {

Reply via email to