You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by de...@apache.org on 2006/06/03 08:54:11 UTC

svn commit: r411392 - /myfaces/core/branches/jsf12/api/src/main/java/javax/faces/component/UIComponent.java

Author: dennisbyrne
Date: Fri Jun  2 23:54:10 2006
New Revision: 411392

URL: http://svn.apache.org/viewvc?rev=411392&view=rev
Log:
java syntax error in invokeOnComponent

Modified:
    myfaces/core/branches/jsf12/api/src/main/java/javax/faces/component/UIComponent.java

Modified: myfaces/core/branches/jsf12/api/src/main/java/javax/faces/component/UIComponent.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/jsf12/api/src/main/java/javax/faces/component/UIComponent.java?rev=411392&r1=411391&r2=411392&view=diff
==============================================================================
--- myfaces/core/branches/jsf12/api/src/main/java/javax/faces/component/UIComponent.java (original)
+++ myfaces/core/branches/jsf12/api/src/main/java/javax/faces/component/UIComponent.java Fri Jun  2 23:54:10 2006
@@ -84,7 +84,7 @@
 		//Searching for this component's children/facets 
     	else 
     	{
-    		for (Iterator<UIComponent> it = this.getFacetsAndChildren(); !returnValue && it.hasNext();)
+    		for (Iterator<UIComponent> it = this.getFacetsAndChildren(); !returnValue && it.hasNext();){
     			returnValue = it.next().invokeOnComponent(context, clientId, callback);
     		}