You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by mr...@apache.org on 2007/04/26 15:42:49 UTC

svn commit: r532741 - /struts/struts2/trunk/plugins/codebehind/src/main/java/org/apache/struts2/codebehind/CodebehindUnknownHandler.java

Author: mrdon
Date: Thu Apr 26 06:42:48 2007
New Revision: 532741

URL: http://svn.apache.org/viewvc?view=rev&rev=532741
Log:
Updating to the new codebehind interface
WW-1715

Modified:
    struts/struts2/trunk/plugins/codebehind/src/main/java/org/apache/struts2/codebehind/CodebehindUnknownHandler.java

Modified: struts/struts2/trunk/plugins/codebehind/src/main/java/org/apache/struts2/codebehind/CodebehindUnknownHandler.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/plugins/codebehind/src/main/java/org/apache/struts2/codebehind/CodebehindUnknownHandler.java?view=diff&rev=532741&r1=532740&r2=532741
==============================================================================
--- struts/struts2/trunk/plugins/codebehind/src/main/java/org/apache/struts2/codebehind/CodebehindUnknownHandler.java (original)
+++ struts/struts2/trunk/plugins/codebehind/src/main/java/org/apache/struts2/codebehind/CodebehindUnknownHandler.java Thu Apr 26 06:42:48 2007
@@ -210,4 +210,11 @@
         return prefix + ns;
     }
 
+    /**
+     * Not used
+     */
+	public Object handleUnknownActionMethod(Object action, String methodName) throws NoSuchMethodException {
+		throw new NoSuchMethodException();
+	}
+
 }