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/20 11:51:50 UTC

svn commit: r596609 - /myfaces/tobago/trunk/example/test/src/main/java/org/apache/myfaces/tobago/example/test/SessionController.java

Author: bommel
Date: Tue Nov 20 02:51:49 2007
New Revision: 596609

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

Modified:
    myfaces/tobago/trunk/example/test/src/main/java/org/apache/myfaces/tobago/example/test/SessionController.java

Modified: myfaces/tobago/trunk/example/test/src/main/java/org/apache/myfaces/tobago/example/test/SessionController.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/example/test/src/main/java/org/apache/myfaces/tobago/example/test/SessionController.java?rev=596609&r1=596608&r2=596609&view=diff
==============================================================================
--- myfaces/tobago/trunk/example/test/src/main/java/org/apache/myfaces/tobago/example/test/SessionController.java (original)
+++ myfaces/tobago/trunk/example/test/src/main/java/org/apache/myfaces/tobago/example/test/SessionController.java Tue Nov 20 02:51:49 2007
@@ -108,14 +108,14 @@
 
   public void actionListener(ActionEvent e) {
     UIComponent component = e.getComponent();
-    for (UIComponent child : (List<UIComponent>)component.getChildren()) {
+    for (UIComponent child : (List<UIComponent>) component.getChildren()) {
       if (child instanceof UIParameter) {
         LOG.error(((UIParameter) child).getValue());
       }
     }
     while ((component = component.getParent()) != null) {
       if (component instanceof UIData) {
-        LOG.error(((UIData)component).getRowIndex());
+        LOG.error(((UIData) component).getRowIndex());
       }
     }
   }