You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@locus.apache.org on 2000/02/16 22:52:02 UTC

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

mandar      00/02/16 13:52:01

  Modified:    src/share/javax/servlet Tag: latest_TOMCAT_30
                        GenericServlet.java
  Log:
  taking jsp:init default:init message out
  at the startup.
  fix to the branch.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.3.2.1   +1 -1      jakarta-tomcat/src/share/javax/servlet/GenericServlet.java
  
  Index: GenericServlet.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/share/javax/servlet/GenericServlet.java,v
  retrieving revision 1.3
  retrieving revision 1.3.2.1
  diff -u -r1.3 -r1.3.2.1
  --- GenericServlet.java	1999/11/08 03:21:33	1.3
  +++ GenericServlet.java	2000/02/16 21:52:01	1.3.2.1
  @@ -254,7 +254,7 @@
   
       public void init(ServletConfig config) throws ServletException {
   	this.config = config;
  -	log("init");
  +	//log("init");
   	this.init();
       }