Skip to content

Commit b6aa5a1

Browse files
committed
Fix Checkstyle line length > 120 and organize imports.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1311751 13f79535-47bb-0310-9956-ffa450edef68
1 parent f245b37 commit b6aa5a1

2 files changed

Lines changed: 5 additions & 7 deletions

File tree

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
/**
2323
* Charsets required of every implementation of the Java platform.
2424
*
25-
* From the Java documentation <a href="http://docs.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">Standard
26-
* charsets</a>:
25+
* From the Java documentation <a href="http://docs.oracle.com/javase/6/docs/api/java/nio/charset/Charset.html">
26+
* Standard charsets</a>:
2727
* <p>
2828
* <cite>Every implementation of the Java platform is required to support the following character encodings. Consult the
2929
* release documentation for your implementation to see if any other encodings are supported. Consult the release
@@ -52,12 +52,12 @@
5252
*/
5353
public class Charsets {
5454
//
55-
// This class should only contain Charset instances for required encodings. This guarantees that it will load correctly and
56-
// without delay on all Java platforms.
55+
// This class should only contain Charset instances for required encodings. This guarantees that it will load
56+
// correctly and without delay on all Java platforms.
5757
//
5858

5959
/**
60-
* Returns the given Charset or the default Charset if the given Charset is null.
60+
* Returns the given Charset or the default Charset if the given Charset is null.
6161
*
6262
* @param charset
6363
* A charset or null.

src/test/java/org/apache/commons/io/DirectoryWalkerTestCase.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@
3434
import org.apache.commons.io.filefilter.IOFileFilter;
3535
import org.apache.commons.io.filefilter.NameFileFilter;
3636
import org.apache.commons.io.filefilter.OrFileFilter;
37-
import org.junit.After;
38-
import org.junit.Before;
3937
import org.junit.Test;
4038

4139
/**

0 commit comments

Comments
 (0)