You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cr...@apache.org on 2003/01/11 01:26:03 UTC

cvs commit: jakarta-servletapi-5/jsr154/src/share/javax/servlet GenericServlet.java

craigmcc    2003/01/10 16:26:02

  Modified:    jsr154/src/share/javax/servlet GenericServlet.java
  Log:
  Remove spurious logging from init() and destroy(), ported forward from the
  same change made a while back in jakarta-servletapi-4.
  
  Revision  Changes    Path
  1.2       +0 -2      jakarta-servletapi-5/jsr154/src/share/javax/servlet/GenericServlet.java
  
  Index: GenericServlet.java
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi-5/jsr154/src/share/javax/servlet/GenericServlet.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- GenericServlet.java	13 Aug 2002 16:21:42 -0000	1.1
  +++ GenericServlet.java	11 Jan 2003 00:26:02 -0000	1.2
  @@ -119,7 +119,6 @@
        */
   
       public void destroy() {
  -	log("destroy");
       }
       
       
  @@ -254,7 +253,6 @@
   
       public void init(ServletConfig config) throws ServletException {
   	this.config = config;
  -	log("init");
   	this.init();
       }
   
  
  
  

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