craigmcc    2002/06/14 14:50:44

  Modified:    src/share/javax/servlet GenericServlet.java
  Log:
  Remove spurious log() calls from init() and destroy().
  
  Revision  Changes    Path
  1.2       +0 -2      jakarta-servletapi/src/share/javax/servlet/GenericServlet.java
  
  Index: GenericServlet.java
  ===================================================================
  RCS file: /home/cvs/jakarta-servletapi/src/share/javax/servlet/GenericServlet.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- GenericServlet.java       26 Apr 2000 05:22:28 -0000      1.1
  +++ GenericServlet.java       14 Jun 2002 21:50:44 -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:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to