You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2014/02/18 05:14:08 UTC

svn commit: r1569181 - /myfaces/core/branches/2.0.x/api/src/main/java/javax/faces/component/UIComponentBase.java

Author: lu4242
Date: Tue Feb 18 04:14:07 2014
New Revision: 1569181

URL: http://svn.apache.org/r1569181
Log:
MYFACES-3857 Unbalanced pushComponentToEL/popComponentFromEL in processUpdates

Modified:
    myfaces/core/branches/2.0.x/api/src/main/java/javax/faces/component/UIComponentBase.java

Modified: myfaces/core/branches/2.0.x/api/src/main/java/javax/faces/component/UIComponentBase.java
URL: http://svn.apache.org/viewvc/myfaces/core/branches/2.0.x/api/src/main/java/javax/faces/component/UIComponentBase.java?rev=1569181&r1=1569180&r2=1569181&view=diff
==============================================================================
--- myfaces/core/branches/2.0.x/api/src/main/java/javax/faces/component/UIComponentBase.java (original)
+++ myfaces/core/branches/2.0.x/api/src/main/java/javax/faces/component/UIComponentBase.java Tue Feb 18 04:14:07 2014
@@ -1474,13 +1474,14 @@ public abstract class UIComponentBase ex
                     UIComponent child = getChildren().get(i);
                     child.processUpdates(context);
                 }
-                popComponentFromEL(context);
             }
         }
         finally
         {
             // After returning from the processUpdates() method on a child or facet, call
             // UIComponent.popComponentFromEL(javax.faces.context.FacesContext)
+            popComponentFromEL(context);
+            
             setCachedFacesContext(null);
         }
     }