Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 96160 invoked from network); 18 Mar 2011 20:31:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 18 Mar 2011 20:31:56 -0000 Received: (qmail 42988 invoked by uid 500); 18 Mar 2011 20:31:56 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 42917 invoked by uid 500); 18 Mar 2011 20:31:56 -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 42910 invoked by uid 99); 18 Mar 2011 20:31:56 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Mar 2011 20:31:56 +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; Fri, 18 Mar 2011 20:31:55 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 86E2B23889B9; Fri, 18 Mar 2011 20:31:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1083053 - /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/UnicodeEscaper.java Date: Fri, 18 Mar 2011 20:31:33 -0000 To: commits@commons.apache.org From: oheger@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110318203133.86E2B23889B9@eris.apache.org> Author: oheger Date: Fri Mar 18 20:31:33 2011 New Revision: 1083053 URL: http://svn.apache.org/viewvc?rev=1083053&view=rev Log: Checkstyle and trailing spaces. Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/UnicodeEscaper.java Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/UnicodeEscaper.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/UnicodeEscaper.java?rev=1083053&r1=1083052&r2=1083053&view=diff ============================================================================== --- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/UnicodeEscaper.java (original) +++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/text/translate/UnicodeEscaper.java Fri Mar 18 20:31:33 2011 @@ -5,9 +5,9 @@ * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -21,7 +21,7 @@ import java.io.Writer; /** * Translates codepoints to their unicode escaped value. - * + * * @author Apache Software Foundation * @since 3.0 * @version $Id$ @@ -40,9 +40,9 @@ public class UnicodeEscaper extends Code } /** - *

Constructs a UnicodeEscaper for the specified range. This is + *

Constructs a UnicodeEscaper for the specified range. This is * the underlying method for the other constructors/builders. The below - * and above boundaries are inclusive when between is + * and above boundaries are inclusive when between is * true and exclusive when it is false.

* * @param below int value representing the lowest codepoint boundary @@ -59,6 +59,7 @@ public class UnicodeEscaper extends Code *

Constructs a UnicodeEscaper below the specified value (exclusive).

* * @param codepoint below which to escape + * @return the newly created {@code UnicodeEscaper} instance */ public static UnicodeEscaper below(int codepoint) { return outsideOf(codepoint, Integer.MAX_VALUE); @@ -68,6 +69,7 @@ public class UnicodeEscaper extends Code *

Constructs a UnicodeEscaper above the specified value (exclusive).

* * @param codepoint above which to escape + * @return the newly created {@code UnicodeEscaper} instance */ public static UnicodeEscaper above(int codepoint) { return outsideOf(0, codepoint); @@ -78,6 +80,7 @@ public class UnicodeEscaper extends Code * * @param codepointLow below which to escape * @param codepointHigh above which to escape + * @return the newly created {@code UnicodeEscaper} instance */ public static UnicodeEscaper outsideOf(int codepointLow, int codepointHigh) { UnicodeEscaper escaper = new UnicodeEscaper(codepointLow, codepointHigh, false); @@ -89,6 +92,7 @@ public class UnicodeEscaper extends Code * * @param codepointLow above which to escape * @param codepointHigh below which to escape + * @return the newly created {@code UnicodeEscaper} instance */ public static UnicodeEscaper between(int codepointLow, int codepointHigh) { UnicodeEscaper escaper = new UnicodeEscaper(codepointLow, codepointHigh, true);