Skip to content

Commit f0eb9b9

Browse files
committed
Javadoc
1 parent 07ad1b3 commit f0eb9b9

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

src/main/java/org/apache/commons/io/IOUtils.java

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1503,14 +1503,13 @@ public static long copyLarge(final InputStream inputStream, final OutputStream o
15031503
* </p>
15041504
* The buffer size is given by {@link #DEFAULT_BUFFER_SIZE}.
15051505
*
1506-
* @param input the {@link InputStream} to read
1507-
* @param output the {@link OutputStream} to write to
1508-
* @param inputOffset : number of bytes to skip from input before copying
1509-
* -ve values are ignored
1510-
* @param length number of bytes to copy. -ve means all
1511-
* @return the number of bytes copied
1512-
* @throws NullPointerException if the input or output is null
1513-
* @throws IOException if an I/O error occurs
1506+
* @param input the {@link InputStream} to read.
1507+
* @param output the {@link OutputStream} to write.
1508+
* @param inputOffset number of bytes to skip from input before copying, these bytes are ignored.
1509+
* @param length number of bytes to copy.
1510+
* @return the number of bytes copied.
1511+
* @throws NullPointerException if the input or output is null.
1512+
* @throws IOException if an I/O error occurs.
15141513
* @since 2.2
15151514
*/
15161515
public static long copyLarge(final InputStream input, final OutputStream output, final long inputOffset,
@@ -1531,15 +1530,14 @@ public static long copyLarge(final InputStream input, final OutputStream output,
15311530
* this is done to guarantee that the correct number of characters are skipped.
15321531
* </p>
15331532
*
1534-
* @param input the {@link InputStream} to read
1535-
* @param output the {@link OutputStream} to write to
1536-
* @param inputOffset number of bytes to skip from input before copying
1537-
* -ve values are ignored
1538-
* @param length number of bytes to copy. -ve means all
1539-
* @param buffer the buffer to use for the copy
1540-
* @return the number of bytes copied
1541-
* @throws NullPointerException if the input or output is null
1542-
* @throws IOException if an I/O error occurs
1533+
* @param input the {@link InputStream} to read.
1534+
* @param output the {@link OutputStream} to write.
1535+
* @param inputOffset number of bytes to skip from input before copying, these bytes are ignored.
1536+
* @param length number of bytes to copy.
1537+
* @param buffer the buffer to use for the copy.
1538+
* @return the number of bytes copied.
1539+
* @throws NullPointerException if the input or output is null.
1540+
* @throws IOException if an I/O error occurs.
15431541
* @since 2.2
15441542
*/
15451543
public static long copyLarge(final InputStream input, final OutputStream output,

0 commit comments

Comments
 (0)