Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id BFA479E28 for ; Tue, 10 Apr 2012 14:26:46 +0000 (UTC) Received: (qmail 70986 invoked by uid 500); 10 Apr 2012 14:26:46 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 70902 invoked by uid 500); 10 Apr 2012 14:26:46 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 70895 invoked by uid 99); 10 Apr 2012 14:26:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Apr 2012 14:26:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Apr 2012 14:26:43 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 126C7238897D for ; Tue, 10 Apr 2012 14:26:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1311751 - in /commons/proper/io/trunk/src: main/java/org/apache/commons/io/Charsets.java test/java/org/apache/commons/io/DirectoryWalkerTestCase.java Date: Tue, 10 Apr 2012 14:26:22 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120410142623.126C7238897D@eris.apache.org> Author: ggregory Date: Tue Apr 10 14:26:21 2012 New Revision: 1311751 URL: http://svn.apache.org/viewvc?rev=1311751&view=rev Log: Fix Checkstyle line length > 120 and organize imports. Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/Charsets.java commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCase.java Modified: commons/proper/io/trunk/src/main/java/org/apache/commons/io/Charsets.java URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/main/java/org/apache/commons/io/Charsets.java?rev=1311751&r1=1311750&r2=1311751&view=diff ============================================================================== --- commons/proper/io/trunk/src/main/java/org/apache/commons/io/Charsets.java (original) +++ commons/proper/io/trunk/src/main/java/org/apache/commons/io/Charsets.java Tue Apr 10 14:26:21 2012 @@ -22,8 +22,8 @@ import java.nio.charset.UnsupportedChars /** * Charsets required of every implementation of the Java platform. * - * From the Java documentation Standard - * charsets: + * From the Java documentation + * Standard charsets: *

* Every implementation of the Java platform is required to support the following character encodings. Consult the * release documentation for your implementation to see if any other encodings are supported. Consult the release @@ -52,12 +52,12 @@ import java.nio.charset.UnsupportedChars */ public class Charsets { // - // This class should only contain Charset instances for required encodings. This guarantees that it will load correctly and - // without delay on all Java platforms. + // This class should only contain Charset instances for required encodings. This guarantees that it will load + // correctly and without delay on all Java platforms. // /** - * Returns the given Charset or the default Charset if the given Charset is null. + * Returns the given Charset or the default Charset if the given Charset is null. * * @param charset * A charset or null. Modified: commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCase.java URL: http://svn.apache.org/viewvc/commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCase.java?rev=1311751&r1=1311750&r2=1311751&view=diff ============================================================================== --- commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCase.java (original) +++ commons/proper/io/trunk/src/test/java/org/apache/commons/io/DirectoryWalkerTestCase.java Tue Apr 10 14:26:21 2012 @@ -34,8 +34,6 @@ import org.apache.commons.io.filefilter. import org.apache.commons.io.filefilter.IOFileFilter; import org.apache.commons.io.filefilter.NameFileFilter; import org.apache.commons.io.filefilter.OrFileFilter; -import org.junit.After; -import org.junit.Before; import org.junit.Test; /**