You are viewing a plain text version of this content. The canonical link for it is here.
Posted to servletapi-dev@jakarta.apache.org by cr...@apache.org on 2002/06/14 23:51:06 UTC

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

craigmcc    2002/06/14 14:51:06

  Modified:    src/share/javax/servlet GenericServlet.java
  Log:
  Remove spurious log() calls from init() and destroy().
  
  Revision  Changes    Path
  1.3       +0 -2      jakarta-servletapi-4/src/share/javax/servlet/GenericServlet.java
  
  Index: GenericServlet.java
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi-4/src/share/javax/servlet/GenericServlet.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- GenericServlet.java	12 Apr 2001 19:47:12 -0000	1.2
  +++ GenericServlet.java	14 Jun 2002 21:51:06 -0000	1.3
  @@ -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>