Skip to content

Commit 533944f

Browse files
author
Gary Gregory
committed
Clean up tests. Javadocs.
1 parent 62eef61 commit 533944f

9 files changed

Lines changed: 545 additions & 551 deletions

File tree

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

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
import java.net.URL;
3232
import java.net.URLConnection;
3333
import java.nio.ByteBuffer;
34-
import java.nio.channels.FileChannel;
3534
import java.nio.charset.Charset;
3635
import java.nio.charset.StandardCharsets;
3736
import java.nio.file.Files;
@@ -110,11 +109,6 @@ public FileUtils() {
110109
*/
111110
public static final BigInteger ONE_MB_BI = ONE_KB_BI.multiply(ONE_KB_BI);
112111

113-
/**
114-
* The file copy buffer size (30 MB)
115-
*/
116-
private static final long FILE_COPY_BUFFER_SIZE = ONE_MB * 30;
117-
118112
/**
119113
* The number of bytes in a gigabyte.
120114
*/

src/main/java/org/apache/commons/io/output/NullOutputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* <p>
2525
* This output stream has no destination (file/socket etc.) and all
2626
* bytes written to it are ignored and lost.
27-
*</p>
27+
* </p>
2828
* @version $Id$
2929
*/
3030
public class NullOutputStream extends OutputStream {

0 commit comments

Comments
 (0)