You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2007/10/24 18:40:33 UTC

svn commit: r587924 - /myfaces/core/branches/1_2_1/api/src/main/java/javax/faces/component/UIComponent.java

Author: mmarinschek
Date: Wed Oct 24 09:40:32 2007
New Revision: 587924

URL: http://svn.apache.org/viewvc?rev=587924&view=rev
Log:
https://issues.apache.org/jira/browse/MYFACES-1751 (MYFACES-1751): encodeChildren is wrongly implemented everywhere else as well - as it was doubly wrong, the bug was not visible

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

Modified: myfaces/core/branches/1_2_1/api/src/main/java/javax/faces/component/UIComponent.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/1_2_1/api/src/main/java/javax/faces/component/UIComponent.java?rev=587924&r1=587923&r2=587924&view=diff
==============================================================================
--- myfaces/core/branches/1_2_1/api/src/main/java/javax/faces/component/UIComponent.java (original)
+++ myfaces/core/branches/1_2_1/api/src/main/java/javax/faces/component/UIComponent.java Wed Oct 24 09:40:32 2007
@@ -234,7 +234,7 @@
     		this.encodeBegin(context);
     		
     		//rendering children
-    		if(this.getRendersChildren())
+    		if(!this.getRendersChildren())
     		{
     			this.encodeChildren(context);
     		}