You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/11/19 11:07:28 UTC

svn commit: r596248 - /myfaces/tobago/trunk/extension/facelets/src/main/java/org/apache/myfaces/tobago/facelets/SortActionSourceRule.java

Author: bommel
Date: Mon Nov 19 02:07:28 2007
New Revision: 596248

URL: http://svn.apache.org/viewvc?rev=596248&view=rev
Log:
(TOBAGO-541) ActionListener signature is restricted to SortActionEvent in SortActionSourceRule

Modified:
    myfaces/tobago/trunk/extension/facelets/src/main/java/org/apache/myfaces/tobago/facelets/SortActionSourceRule.java

Modified: myfaces/tobago/trunk/extension/facelets/src/main/java/org/apache/myfaces/tobago/facelets/SortActionSourceRule.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/extension/facelets/src/main/java/org/apache/myfaces/tobago/facelets/SortActionSourceRule.java?rev=596248&r1=596247&r2=596248&view=diff
==============================================================================
--- myfaces/tobago/trunk/extension/facelets/src/main/java/org/apache/myfaces/tobago/facelets/SortActionSourceRule.java (original)
+++ myfaces/tobago/trunk/extension/facelets/src/main/java/org/apache/myfaces/tobago/facelets/SortActionSourceRule.java Mon Nov 19 02:07:28 2007
@@ -33,7 +33,7 @@
  * Time: 13:53:41
  */
 public class SortActionSourceRule extends MetaRule {
-  static final Class[] ACTION_LISTENER = new Class[]{SortActionEvent.class};
+  static final Class[] ACTION_LISTENER = new Class[]{ActionEvent.class};
   public static final SortActionSourceRule INSTANCE = new SortActionSourceRule();
 
   public Metadata applyRule(String name, TagAttribute attribute,