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 2009/11/21 02:08:59 UTC

svn commit: r882812 - /myfaces/core/trunk/api/src/main/java/javax/faces/component/UIViewRoot.java

Author: lu4242
Date: Sat Nov 21 01:08:59 2009
New Revision: 882812

URL: http://svn.apache.org/viewvc?rev=882812&view=rev
Log:
MYFACES-2374 remove the call to phase listeners, because the spec api does not mention any call from here.

Modified:
    myfaces/core/trunk/api/src/main/java/javax/faces/component/UIViewRoot.java

Modified: myfaces/core/trunk/api/src/main/java/javax/faces/component/UIViewRoot.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/src/main/java/javax/faces/component/UIViewRoot.java?rev=882812&r1=882811&r2=882812&view=diff
==============================================================================
--- myfaces/core/trunk/api/src/main/java/javax/faces/component/UIViewRoot.java (original)
+++ myfaces/core/trunk/api/src/main/java/javax/faces/component/UIViewRoot.java Sat Nov 21 01:08:59 2009
@@ -657,7 +657,7 @@
             // invoke afterPhase MethodExpression
             // Note: In this phase it is not possible to invoke the beforePhase method, because we
             // first have to restore the view to get its attributes.
-            notifyListeners(context, PhaseId.RESTORE_VIEW, getAfterPhaseListener(), false);
+            //notifyListeners(context, PhaseId.RESTORE_VIEW, getAfterPhaseListener(), false);
             
             visitTree(VisitContext.createVisitContext(context), new RestoreStateCallback());
         }