Skip to content

Commit 94e6453

Browse files
committed
Javadoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1301432 13f79535-47bb-0310-9956-ffa450edef68
1 parent 4ccf5c7 commit 94e6453

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public class IOUtils {
115115
}
116116

117117
/**
118-
* The default buffer size to use for
118+
* The default buffer size ({@value}) to use for
119119
* {@link #copyLarge(InputStream, OutputStream)}
120120
* and
121121
* {@link #copyLarge(Reader, Writer)}
@@ -1435,6 +1435,8 @@ public static int copy(InputStream input, OutputStream output) throws IOExceptio
14351435
* <p>
14361436
* This method buffers the input internally, so there is no need to use a
14371437
* <code>BufferedInputStream</code>.
1438+
* <p>
1439+
* The buffer size is given by {@link #DEFAULT_BUFFER_SIZE}.
14381440
*
14391441
* @param input the <code>InputStream</code> to read from
14401442
* @param output the <code>OutputStream</code> to write to
@@ -1538,6 +1540,8 @@ public static int copy(Reader input, Writer output) throws IOException {
15381540
* <p>
15391541
* This method buffers the input internally, so there is no need to use a
15401542
* <code>BufferedReader</code>.
1543+
* <p>
1544+
* The buffer size is given by {@link #DEFAULT_BUFFER_SIZE}.
15411545
*
15421546
* @param input the <code>Reader</code> to read from
15431547
* @param output the <code>Writer</code> to write to

0 commit comments

Comments
 (0)