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 2010/06/07 15:24:57 UTC

svn commit: r952215 - /myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/ToolBarRendererBase.java

Author: lofwyr
Date: Mon Jun  7 13:24:56 2010
New Revision: 952215

URL: http://svn.apache.org/viewvc?rev=952215&view=rev
Log:
checkstyle

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

Modified: myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/ToolBarRendererBase.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/ToolBarRendererBase.java?rev=952215&r1=952214&r2=952215&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/ToolBarRendererBase.java (original)
+++ myfaces/tobago/trunk/tobago-theme/tobago-theme-scarborough/src/main/java/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/tag/ToolBarRendererBase.java Mon Jun  7 13:24:56 2010
@@ -80,7 +80,7 @@ public abstract class ToolBarRendererBas
     TobagoResponseWriter writer = HtmlRendererUtils.getTobagoResponseWriter(context);
 
     Measure width = Measure.valueOf(-1);
-    for (UIComponent command : (List<UIComponent>)toolBar.getChildren()) {
+    for (UIComponent command : (List<UIComponent>) toolBar.getChildren()) {
       if (command instanceof UICommandBase) {
         width = renderToolbarCommand(context, toolBar, (UICommandBase) command, writer, width);
       } else if (command instanceof UIToolBarSeparator) {