Return-Path: X-Original-To: apmail-hc-commits-archive@www.apache.org Delivered-To: apmail-hc-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 67476FB59 for ; Thu, 4 Apr 2013 14:11:12 +0000 (UTC) Received: (qmail 50288 invoked by uid 500); 4 Apr 2013 14:11:12 -0000 Delivered-To: apmail-hc-commits-archive@hc.apache.org Received: (qmail 50221 invoked by uid 500); 4 Apr 2013 14:11:11 -0000 Mailing-List: contact commits-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list commits@hc.apache.org Received: (qmail 50194 invoked by uid 99); 4 Apr 2013 14:11:10 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Apr 2013 14:11:10 +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; Thu, 04 Apr 2013 14:11:07 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id D6EBB23889D5 for ; Thu, 4 Apr 2013 14:10:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1464560 - /httpcomponents/httpclient/branches/4.2.x/httpclient/src/main/java/org/apache/http/conn/util/InetAddressUtils.java Date: Thu, 04 Apr 2013 14:10:46 -0000 To: commits@hc.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130404141046.D6EBB23889D5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebb Date: Thu Apr 4 14:10:46 2013 New Revision: 1464560 URL: http://svn.apache.org/r1464560 Log: Trailing white space Modified: httpcomponents/httpclient/branches/4.2.x/httpclient/src/main/java/org/apache/http/conn/util/InetAddressUtils.java Modified: httpcomponents/httpclient/branches/4.2.x/httpclient/src/main/java/org/apache/http/conn/util/InetAddressUtils.java URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/branches/4.2.x/httpclient/src/main/java/org/apache/http/conn/util/InetAddressUtils.java?rev=1464560&r1=1464559&r2=1464560&view=diff ============================================================================== --- httpcomponents/httpclient/branches/4.2.x/httpclient/src/main/java/org/apache/http/conn/util/InetAddressUtils.java (original) +++ httpcomponents/httpclient/branches/4.2.x/httpclient/src/main/java/org/apache/http/conn/util/InetAddressUtils.java Thu Apr 4 14:10:46 2013 @@ -55,8 +55,8 @@ public class InetAddressUtils { "^((?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)?)::((?:[0-9A-Fa-f]{1,4}(?::[0-9A-Fa-f]{1,4})*)?)$"); /* - * The above pattern is not totally rigorous as it allows for more than 7 hex fields in total - */ + * The above pattern is not totally rigorous as it allows for more than 7 hex fields in total + */ private static final char COLON_CHAR = ':'; // Must not have more than 7 colons (i.e. 8 fields) @@ -64,7 +64,7 @@ public class InetAddressUtils { /** * Checks whether the parameter is a valid IPv4 address - * + * * @param input the address string to check for validity * @return true if the input parameter is a valid IPv4 address */ @@ -74,7 +74,7 @@ public class InetAddressUtils { /** * Checks whether the parameter is a valid standard (non-compressed) IPv6 address - * + * * @param input the address string to check for validity * @return true if the input parameter is a valid standard (non-compressed) IPv6 address */ @@ -84,7 +84,7 @@ public class InetAddressUtils { /** * Checks whether the parameter is a valid compressed IPv6 address - * + * * @param input the address string to check for validity * @return true if the input parameter is a valid compressed IPv6 address */ @@ -100,7 +100,7 @@ public class InetAddressUtils { /** * Checks whether the parameter is a valid IPv6 address (including compressed). - * + * * @param input the address string to check for validity * @return true if the input parameter is a valid standard or compressed IPv6 address */