Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 78456 invoked from network); 31 Oct 2007 05:21:39 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 31 Oct 2007 05:21:39 -0000 Received: (qmail 54491 invoked by uid 500); 31 Oct 2007 05:21:26 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 54431 invoked by uid 500); 31 Oct 2007 05:21:25 -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 54420 invoked by uid 99); 31 Oct 2007 05:21:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 30 Oct 2007 22:21:25 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 31 Oct 2007 05:21:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 365CC1A9832; Tue, 30 Oct 2007 22:21:17 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r590560 - /commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/UrlValidator.java Date: Wed, 31 Oct 2007 05:21:17 -0000 To: commits@commons.apache.org From: bspeakmon@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071031052117.365CC1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: bspeakmon Date: Tue Oct 30 22:21:15 2007 New Revision: 590560 URL: http://svn.apache.org/viewvc?rev=590560&view=rev Log: - removed commented-out code I forgot to remove Modified: commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/UrlValidator.java Modified: commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/UrlValidator.java URL: http://svn.apache.org/viewvc/commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/UrlValidator.java?rev=590560&r1=590559&r2=590560&view=diff ============================================================================== --- commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/UrlValidator.java (original) +++ commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/UrlValidator.java Tue Oct 30 22:21:15 2007 @@ -313,7 +313,6 @@ return false; } - //Perl5Util authorityMatcher = new Perl5Util(); Pattern authorityPattern = Pattern.compile(AUTHORITY_PATTERN); Matcher authorityMatcher = authorityPattern.matcher(authority); if (!authorityMatcher.matches()) {