Author: henning
Date: Sat Oct  1 05:40:39 2005
New Revision: 292976

URL: http://svn.apache.org/viewcvs?rev=292976&view=rev
Log:
make inner classes static


Modified:
    
jakarta/velocity/core/trunk/src/java/org/apache/velocity/runtime/directive/Foreach.java
    
jakarta/velocity/core/trunk/src/java/org/apache/velocity/util/introspection/UberspectImpl.java

Modified: 
jakarta/velocity/core/trunk/src/java/org/apache/velocity/runtime/directive/Foreach.java
URL: 
http://svn.apache.org/viewcvs/jakarta/velocity/core/trunk/src/java/org/apache/velocity/runtime/directive/Foreach.java?rev=292976&r1=292975&r2=292976&view=diff
==============================================================================
--- 
jakarta/velocity/core/trunk/src/java/org/apache/velocity/runtime/directive/Foreach.java
 (original)
+++ 
jakarta/velocity/core/trunk/src/java/org/apache/velocity/runtime/directive/Foreach.java
 Sat Oct  1 05:40:39 2005
@@ -58,7 +58,7 @@
      * is required since the standard context may not support nulls.
      * All puts and gets are passed through, except for the foreach iterator 
key.
      */
-    protected class NullHolderContext implements InternalContextAdapter
+    protected static class NullHolderContext implements InternalContextAdapter
     {
         private InternalContextAdapter  innerContext = null;
         private String   loopVariableKey = "";

Modified: 
jakarta/velocity/core/trunk/src/java/org/apache/velocity/util/introspection/UberspectImpl.java
URL: 
http://svn.apache.org/viewcvs/jakarta/velocity/core/trunk/src/java/org/apache/velocity/util/introspection/UberspectImpl.java?rev=292976&r1=292975&r2=292976&view=diff
==============================================================================
--- 
jakarta/velocity/core/trunk/src/java/org/apache/velocity/util/introspection/UberspectImpl.java
 (original)
+++ 
jakarta/velocity/core/trunk/src/java/org/apache/velocity/util/introspection/UberspectImpl.java
 Sat Oct  1 05:40:39 2005
@@ -255,7 +255,7 @@
     /**
      *  Implementation of VelMethod
      */
-    public class VelMethodImpl implements VelMethod
+    public static class VelMethodImpl implements VelMethod
     {
         Method method = null;
 
@@ -290,7 +290,7 @@
         }
     }
 
-    public class VelGetterImpl implements VelPropertyGet
+    public static class VelGetterImpl implements VelPropertyGet
     {
         AbstractExecutor ae = null;
 
@@ -320,7 +320,7 @@
         }
     }
 
-    public class VelSetterImpl implements VelPropertySet
+    public static class VelSetterImpl implements VelPropertySet
     {
         VelMethod vm = null;
         String putKey = null;



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to