You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by sk...@apache.org on 2005/11/28 04:12:18 UTC

svn commit: r349350 - /myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentTag.java

Author: skitching
Date: Sun Nov 27 19:12:04 2005
New Revision: 349350

URL: http://svn.apache.org/viewcvs?rev=349350&view=rev
Log:
Add comment re strange reset behaviour for id/rendered/binding attributes

Modified:
    myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentTag.java

Modified: myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentTag.java
URL: http://svn.apache.org/viewcvs/myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentTag.java?rev=349350&r1=349349&r2=349350&view=diff
==============================================================================
--- myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentTag.java (original)
+++ myfaces/api/trunk/src/java/javax/faces/webapp/UIComponentTag.java Sun Nov 27 19:12:04 2005
@@ -88,7 +88,9 @@
         pageContext = null;
         _parent = null;
 
-        //reset tag attribute members
+        // Reset tag attribute members. These are reset here rather than in
+        // internalRelease because of some Resin-related issue. See commit
+        // r166747.
         _binding = null;
         _id = null;
         _rendered = null;