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 f0eb9b9ea Javadoc f0eb9b9ea is described below commit f0eb9b9ea84bef8e1d9d6b9dbed0d2d120861f4f Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jan 2 08:46:24 2025 -0500 Javadoc --- src/main/java/org/apache/commons/io/IOUtils.java | 32 +++++++++++------------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/src/main/java/org/apache/commons/io/IOUtils.java b/src/main/java/org/apache/commons/io/IOUtils.java index 3b64f3227..93b31ba33 100644 --- a/src/main/java/org/apache/commons/io/IOUtils.java +++ b/src/main/java/org/apache/commons/io/IOUtils.java @@ -1503,14 +1503,13 @@ public class IOUtils { * </p> * The buffer size is given by {@link #DEFAULT_BUFFER_SIZE}. * - * @param input the {@link InputStream} to read - * @param output the {@link OutputStream} to write to - * @param inputOffset : number of bytes to skip from input before copying - * -ve values are ignored - * @param length number of bytes to copy. -ve means all - * @return the number of bytes copied - * @throws NullPointerException if the input or output is null - * @throws IOException if an I/O error occurs + * @param input the {@link InputStream} to read. + * @param output the {@link OutputStream} to write. + * @param inputOffset number of bytes to skip from input before copying, these bytes are ignored. + * @param length number of bytes to copy. + * @return the number of bytes 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 InputStream input, final OutputStream output, final long inputOffset, @@ -1531,15 +1530,14 @@ public class IOUtils { * this is done to guarantee that the correct number of characters are skipped. * </p> * - * @param input the {@link InputStream} to read - * @param output the {@link OutputStream} to write to - * @param inputOffset number of bytes to skip from input before copying - * -ve values are ignored - * @param length number of bytes to copy. -ve means all - * @param buffer the buffer to use for the copy - * @return the number of bytes copied - * @throws NullPointerException if the input or output is null - * @throws IOException if an I/O error occurs + * @param input the {@link InputStream} to read. + * @param output the {@link OutputStream} to write. + * @param inputOffset number of bytes to skip from input before copying, these bytes are ignored. + * @param length number of bytes to copy. + * @param buffer the buffer to use for the copy. + * @return the number of bytes 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 InputStream input, final OutputStream output,