You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2002/10/17 17:46:05 UTC

DO NOT REPLY [Bug 13741] New: - TagSupport not release all attributes

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=13741>.
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=13741

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: tomcat-dev@jakarta.apache.org
        ReportedBy: pr@webapp.de


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;

    }

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>