DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13742>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13742

TagSupport not release all attributes

           Summary: TagSupport not release all attributes
           Product: Tomcat 4
           Version: Nightly Build
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Servlet & JSP API
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


At the servlet 4.0 Implementation at javax.servlet.jsp.tagext.TagSupport
is a bug:

The release method not release all attibutes:
 
   /**
     * Release state.
     *
     * @see Tag#release()
     */

    public void release() {
        parent          = null;
    }

better is
   public void release() {
        parent          = null;
        id = null ;
        values = null ;
        pageContext = null ;
   }

I have trouble with this implementation at Tag Pooling!

    }

--
To unsubscribe, e-mail:   <mailto:tomcat-dev-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-dev-help@;jakarta.apache.org>

Reply via email to