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/08/02 15:19:48 UTC

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

Author: sebb
Date: Sun Aug  2 13:19:47 2009
New Revision: 800064

URL: http://svn.apache.org/viewvc?rev=800064&view=rev
Log:
Unused variable

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

Modified: commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/util/Introspector.java
URL: http://svn.apache.org/viewvc/commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/util/Introspector.java?rev=800064&r1=800063&r2=800064&view=diff
==============================================================================
--- commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/util/Introspector.java (original)
+++ commons/proper/jexl/branches/2.0/src/main/java/org/apache/commons/jexl/util/Introspector.java Sun Aug  2 13:19:47 2009
@@ -178,7 +178,6 @@
     public final AbstractExecutor.Get getGetExecutor(Object obj, Object identifier) {
         final Class<?> claz = obj.getClass();
         final String property = toString(identifier);
-        Method method;
         AbstractExecutor.Get executor;
         // first try for a getFoo() type of property (also getfoo() )
         if (property != null) {