You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by di...@apache.org on 2007/10/25 23:12:07 UTC

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

Author: dion
Date: Thu Oct 25 14:12:06 2007
New Revision: 588361

URL: http://svn.apache.org/viewvc?rev=588361&view=rev
Log:
remove throws exception

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

Modified: commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/GetExecutor.java
URL: http://svn.apache.org/viewvc/commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/GetExecutor.java?rev=588361&r1=588360&r2=588361&view=diff
==============================================================================
--- commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/GetExecutor.java (original)
+++ commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/GetExecutor.java Thu Oct 25 14:12:06 2007
@@ -47,11 +47,10 @@
      * @param ispect The JEXL introspector.
      * @param c The class being examined.
      * @param key The key for the get(key) operation.
-     * @throws Exception Failure while trying to obtain the pertinent method.
      */
     public GetExecutor(Log r,
             org.apache.commons.jexl.util.introspection.Introspector ispect,
-            Class c, String key) throws Exception {
+            Class c, String key) {
         rlog = r;
         args[0] = key;
         method = ispect.getMethod(c, "get", args);