Return-Path: Delivered-To: apmail-cocoon-cvs-archive@www.apache.org Received: (qmail 81039 invoked from network); 19 Jul 2005 08:04:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Jul 2005 08:04:52 -0000 Received: (qmail 59469 invoked by uid 500); 19 Jul 2005 08:04:51 -0000 Delivered-To: apmail-cocoon-cvs-archive@cocoon.apache.org Received: (qmail 59421 invoked by uid 500); 19 Jul 2005 08:04:51 -0000 Mailing-List: contact cvs-help@cocoon.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@cocoon.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@cocoon.apache.org Received: (qmail 59398 invoked by uid 99); 19 Jul 2005 08:04:51 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 19 Jul 2005 01:04:40 -0700 Received: (qmail 80965 invoked by uid 65534); 19 Jul 2005 08:04:38 -0000 Message-ID: <20050719080438.80957.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r219629 - /cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/components/modules/input/RealPathModule.java Date: Tue, 19 Jul 2005 08:04:37 -0000 To: cvs@cocoon.apache.org From: mpo@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: mpo Date: Tue Jul 19 00:59:02 2005 New Revision: 219629 URL: http://svn.apache.org/viewcvs?rev=219629&view=rev Log: fixing an obvious cut and paste glitch Modified: cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/components/modules/input/RealPathModule.java Modified: cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/components/modules/input/RealPathModule.java URL: http://svn.apache.org/viewcvs/cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/components/modules/input/RealPathModule.java?rev=219629&r1=219628&r2=219629&view=diff ============================================================================== --- cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/components/modules/input/RealPathModule.java (original) +++ cocoon/branches/BRANCH_2_1_X/src/java/org/apache/cocoon/components/modules/input/RealPathModule.java Tue Jul 19 00:59:02 2005 @@ -33,7 +33,7 @@ * running in a .war file), null will be returned. * * @author Jeff Turner - * @version CVS $Id: RealPathModule.java,v 1.3 2004/03/05 13:02:48 bdelacretaz Exp $ + * @version CVS $Id$ */ /* @@ -59,7 +59,7 @@ */ public class RealPathModule extends AbstractInputModule implements ThreadSafe { - final static Vector returnNames; + private final static Vector returnNames; static { Vector tmp = new Vector(); tmp.add("realPath"); @@ -79,7 +79,7 @@ public Iterator getAttributeNames( Configuration modeConf, Map objectModel ) throws ConfigurationException { - return RequestURIModule.returnNames.iterator(); + return RealPathModule.returnNames.iterator(); }