You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by mp...@apache.org on 2005/07/19 09:38:46 UTC

svn commit: r219628 - /cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/RealPathModule.java

Author: mpo
Date: Tue Jul 19 00:38:29 2005
New Revision: 219628

URL: http://svn.apache.org/viewcvs?rev=219628&view=rev
Log:
fixing an obvious cut and paste glitch

Modified:
    cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/RealPathModule.java

Modified: cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/RealPathModule.java
URL: http://svn.apache.org/viewcvs/cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/RealPathModule.java?rev=219628&r1=219627&r2=219628&view=diff
==============================================================================
--- cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/RealPathModule.java (original)
+++ cocoon/trunk/src/java/org/apache/cocoon/components/modules/input/RealPathModule.java Tue Jul 19 00:38:29 2005
@@ -33,7 +33,7 @@
  * running in a .war file), <code>null</code> will be returned.
  *
  * @author <a href="mailto:jefft@apache.org">Jeff Turner</a>
- * @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();
     }