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 73EADD9CF for ; Tue, 28 Aug 2012 16:03:18 +0000 (UTC) Received: (qmail 59445 invoked by uid 500); 28 Aug 2012 16:03:18 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 59377 invoked by uid 500); 28 Aug 2012 16:03:17 -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 59366 invoked by uid 99); 28 Aug 2012 16:03:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 Aug 2012 16:03:17 +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, 28 Aug 2012 16:03:16 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C740623888FD for ; Tue, 28 Aug 2012 16:02:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1378197 - /commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/CharEncoding.java Date: Tue, 28 Aug 2012 16:02:33 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120828160233.C740623888FD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ggregory Date: Tue Aug 28 16:02:33 2012 New Revision: 1378197 URL: http://svn.apache.org/viewvc?rev=1378197&view=rev Log: Fix Checkstyle issues. Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/CharEncoding.java Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/CharEncoding.java URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/CharEncoding.java?rev=1378197&r1=1378196&r2=1378197&view=diff ============================================================================== --- commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/CharEncoding.java (original) +++ commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/CharEncoding.java Tue Aug 28 16:02:33 2012 @@ -20,12 +20,12 @@ package org.apache.commons.codec; /** * Character encoding names 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 - * documentation for your implementation to see if any other encodings are supported. + * documentation for your implementation to see if any other encodings are supported. *

* *
    @@ -47,7 +47,9 @@ package org.apache.commons.codec; * This perhaps would best belong in the [lang] project. Even if a similar interface is defined in [lang], it is not * foreseen that [codec] would be made to depend on [lang]. * - *

    This class is immutable and thread-safe.

    + *

    + * This class is immutable and thread-safe. + *

    * * @see Standard charsets * @since 1.4