You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by or...@apache.org on 2005/09/01 01:18:57 UTC

svn commit: r265604 - /myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java

Author: oros
Date: Wed Aug 31 16:18:52 2005
New Revision: 265604

URL: http://svn.apache.org/viewcvs?rev=265604&view=rev
Log:
MYFACES-462: check for transient components is redundant in processRestoreState as transient components are not stored in view state -> removed

Modified:
    myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java

Modified: myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java?rev=265604&r1=265603&r2=265604&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/component/UIComponentBase.java Wed Aug 31 16:18:52 2005
@@ -480,10 +480,7 @@
               if (facetState != null)
               {
                 UIComponent component = (UIComponent)entry.getValue();
-                if(!component.isTransient())
-                {
-                  component.processRestoreState(context, facetState);
-                }
+                component.processRestoreState(context, facetState);
               }
               else
               {