You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/07/28 18:05:45 UTC

svn commit: r798588 - /commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/Introspector.java

Author: sebb
Date: Tue Jul 28 16:05:44 2009
New Revision: 798588

URL: http://svn.apache.org/viewvc?rev=798588&view=rev
Log:
Make unchanging private field final

Modified:
    commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/Introspector.java

Modified: commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/Introspector.java
URL: http://svn.apache.org/viewvc/commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/Introspector.java?rev=798588&r1=798587&r2=798588&view=diff
==============================================================================
--- commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/Introspector.java (original)
+++ commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/Introspector.java Tue Jul 28 16:05:44 2009
@@ -34,7 +34,7 @@
     /**
      *  The uberspector from Velocity that handles all introspection patterns.
      */
-    private static Uberspect uberSpect;
+    private static final Uberspect uberSpect;
 
     static {