Return-Path: Delivered-To: apmail-incubator-click-commits-archive@minotaur.apache.org Received: (qmail 50029 invoked from network); 21 Jan 2010 08:30:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 21 Jan 2010 08:30:50 -0000 Received: (qmail 78013 invoked by uid 500); 21 Jan 2010 08:30:50 -0000 Delivered-To: apmail-incubator-click-commits-archive@incubator.apache.org Received: (qmail 77997 invoked by uid 500); 21 Jan 2010 08:30:50 -0000 Mailing-List: contact click-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: click-dev@incubator.apache.org Delivered-To: mailing list click-commits@incubator.apache.org Received: (qmail 77987 invoked by uid 99); 21 Jan 2010 08:30:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Jan 2010 08:30:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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, 21 Jan 2010 08:30:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 71B8C23888E2; Thu, 21 Jan 2010 08:30:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r901592 - /incubator/click/trunk/click/extras/src/org/apache/click/extras/filter/PerformanceFilter.java Date: Thu, 21 Jan 2010 08:30:15 -0000 To: click-commits@incubator.apache.org From: sabob@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100121083027.71B8C23888E2@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sabob Date: Thu Jan 21 08:29:54 2010 New Revision: 901592 URL: http://svn.apache.org/viewvc?rev=901592&view=rev Log: fixed PerformanceFilter to check against excludeDirs instead of excludeFiles. CLK-614 Modified: incubator/click/trunk/click/extras/src/org/apache/click/extras/filter/PerformanceFilter.java Modified: incubator/click/trunk/click/extras/src/org/apache/click/extras/filter/PerformanceFilter.java URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/extras/src/org/apache/click/extras/filter/PerformanceFilter.java?rev=901592&r1=901591&r2=901592&view=diff ============================================================================== --- incubator/click/trunk/click/extras/src/org/apache/click/extras/filter/PerformanceFilter.java (original) +++ incubator/click/trunk/click/extras/src/org/apache/click/extras/filter/PerformanceFilter.java Thu Jan 21 08:29:54 2010 @@ -590,7 +590,7 @@ } } - if (!excludeFiles.isEmpty()) { + if (!excludeDirs.isEmpty()) { for (int i = 0; i < excludeDirs.size(); i++) { String dir = excludeDirs.get(i).toString(); if (path.startsWith(dir)) {