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 2009/12/21 12:50:36 UTC

svn commit: r892780 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/LayoutContext.java

Author: bommel
Date: Mon Dec 21 11:50:35 2009
New Revision: 892780

URL: http://svn.apache.org/viewvc?rev=892780&view=rev
Log:
fix jsf 1.1 build

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/LayoutContext.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/LayoutContext.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/LayoutContext.java?rev=892780&r1=892779&r2=892780&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/LayoutContext.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/layout/LayoutContext.java Mon Dec 21 11:50:35 2009
@@ -91,8 +91,8 @@
       }
     }
     buffer.append("\n");
-    for (UIComponent child : component.getChildren()) {
-      debug(buffer, child, depth + 2);
+    for (Object child : component.getChildren()) {
+      debug(buffer, (UIComponent) child, depth + 2);
     }
   }
 }