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:07:43 UTC

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

Author: dion
Date: Thu Oct 25 14:07:42 2007
New Revision: 588356

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

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

Modified: commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/introspection/Introspector.java
URL: http://svn.apache.org/viewvc/commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/introspection/Introspector.java?rev=588356&r1=588355&r2=588356&view=diff
==============================================================================
--- commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/introspection/Introspector.java (original)
+++ commons/proper/jexl/branches/2.0/src/java/org/apache/commons/jexl/util/introspection/Introspector.java Thu Oct 25 14:07:42 2007
@@ -83,9 +83,8 @@
      *               the parameters
      *
      * @return The desired Method object.
-     * @throws Exception if the superclass does.
      */
-    public Method getMethod(Class c, String name, Object[] params) throws Exception {
+    public Method getMethod(Class c, String name, Object[] params) {
         /*
          *  just delegate to the base class
          */