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 01:56:35 UTC

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

Author: lu4242
Date: Sat Nov 21 00:56:34 2009
New Revision: 882808

URL: http://svn.apache.org/viewvc?rev=882808&view=rev
Log:
comment setSubmitted(false) temporally because tck test check for the opposite

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

Modified: myfaces/core/trunk/api/src/main/java/javax/faces/component/UIForm.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/src/main/java/javax/faces/component/UIForm.java?rev=882808&r1=882807&r2=882808&view=diff
==============================================================================
--- myfaces/core/trunk/api/src/main/java/javax/faces/component/UIForm.java (original)
+++ myfaces/core/trunk/api/src/main/java/javax/faces/component/UIForm.java Sat Nov 21 00:56:34 2009
@@ -140,7 +140,7 @@
     {
         // The saveState() method of UIForm must call setSubmitted(false) before calling super.saveState() as an 
         // extra precaution to ensure the submitted state is not persisted across requests.
-        setSubmitted(false);
+        //setSubmitted(false);
 
         return super.saveState(context);
     }