You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2016/07/24 15:45:08 UTC

svn commit: r1753942 - /myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/AjaxClientBehaviorRenderer.java

Author: weber
Date: Sun Jul 24 15:45:08 2016
New Revision: 1753942

URL: http://svn.apache.org/viewvc?rev=1753942&view=rev
Log:
TOBAGO-1574 - AJAX not working from change-facet-command: checkstyle

Modified:
    myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/AjaxClientBehaviorRenderer.java

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/AjaxClientBehaviorRenderer.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/AjaxClientBehaviorRenderer.java?rev=1753942&r1=1753941&r2=1753942&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/AjaxClientBehaviorRenderer.java (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/AjaxClientBehaviorRenderer.java Sun Jul 24 15:45:08 2016
@@ -31,7 +31,6 @@ import javax.faces.component.behavior.Aj
 import javax.faces.component.behavior.ClientBehavior;
 import javax.faces.component.behavior.ClientBehaviorContext;
 import javax.faces.context.FacesContext;
-import javax.faces.event.ActionEvent;
 import javax.faces.event.AjaxBehaviorEvent;
 import javax.faces.event.PhaseId;
 import javax.faces.render.ClientBehaviorRenderer;
@@ -78,7 +77,7 @@ public class AjaxClientBehaviorRenderer
         null, // getConfirmation(command), // todo
         null,
         collapse,
-        (component instanceof AbstractUICommand) ? ((AbstractUICommand)component).isOmit() : null);
+        (component instanceof AbstractUICommand) ? ((AbstractUICommand) component).isOmit() : null);
 
     final CommandMap map = new CommandMap();
     map.addCommand(behaviorContext.getEventName(), command);