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

svn commit: r1757479 - /myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/standard/standard/tag/CommandRendererBase.java

Author: lofwyr
Date: Wed Aug 24 09:06:43 2016
New Revision: 1757479

URL: http://svn.apache.org/viewvc?rev=1757479&view=rev
Log:
code style

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

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/standard/standard/tag/CommandRendererBase.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/standard/standard/tag/CommandRendererBase.java?rev=1757479&r1=1757478&r2=1757479&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/standard/standard/tag/CommandRendererBase.java (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-standard/src/main/java/org/apache/myfaces/tobago/renderkit/html/standard/standard/tag/CommandRendererBase.java Wed Aug 24 09:06:43 2016
@@ -186,9 +186,9 @@ public abstract class CommandRendererBas
   @Override
   public void encodeChildren(final FacesContext facesContext, final UIComponent component) throws IOException {
 
-    final AbstractUICommand link = (AbstractUICommand) component;
+    final AbstractUICommand command = (AbstractUICommand) component;
 
-    if (link.isParentOfCommands()) {
+    if (command.isParentOfCommands()) {
       final TobagoResponseWriter writer = getResponseWriter(facesContext);
 
       for (UIComponent child : component.getChildren()) {