You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2008/04/04 22:21:13 UTC

svn commit: r644880 - /myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUIData.java

Author: weber
Date: Fri Apr  4 13:21:11 2008
New Revision: 644880

URL: http://svn.apache.org/viewvc?rev=644880&view=rev
Log:
(TOBAGO-637) Generate Components, JSP Tags from annotations
<http://issues.apache.org/jira/browse/TOBAGO-637>
  don't clear model data, just UIDatas internals

Modified:
    myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUIData.java

Modified: myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUIData.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUIData.java?rev=644880&r1=644879&r2=644880&view=diff
==============================================================================
--- myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUIData.java (original)
+++ myfaces/tobago/trunk/core/src/main/java/org/apache/myfaces/tobago/component/AbstractUIData.java Fri Apr  4 13:21:11 2008
@@ -365,7 +365,7 @@
     // in RI and myfaces this could done via setValue(null)
 
     if (FacesUtils.hasValueBindingOrValueExpression(this, "value")) {
-      FacesUtils.setValueOfBindingOrExpression(facesContext, null, this, "value");
+      setValue(null);
     } else {
       setValue(getValue());
     }