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 2013/11/06 20:38:43 UTC

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

Author: lu4242
Date: Wed Nov  6 19:38:43 2013
New Revision: 1539439

URL: http://svn.apache.org/r1539439
Log:
MYFACES-3820 UIInput.setSubmittedValue() cause recursive call when calling getSubmittedValue() on Debug 

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

Modified: myfaces/core/trunk/api/src/main/java/javax/faces/component/UIInput.java
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/src/main/java/javax/faces/component/UIInput.java?rev=1539439&r1=1539438&r2=1539439&view=diff
==============================================================================
--- myfaces/core/trunk/api/src/main/java/javax/faces/component/UIInput.java (original)
+++ myfaces/core/trunk/api/src/main/java/javax/faces/component/UIInput.java Wed Nov  6 19:38:43 2013
@@ -942,7 +942,7 @@ public class UIInput extends UIOutput im
         {
             // extended debug-info when in Development mode
             _createFieldDebugInfo(facesContext, "submittedValue",
-                    getSubmittedValue(), submittedValue, 1);
+                    getStateHelper().get(PropertyKeys.submittedValue), submittedValue, 1);
         }
         getStateHelper().put(PropertyKeys.submittedValue, submittedValue );
     }