You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cl...@apache.org on 2001/05/18 06:46:38 UTC

cvs commit: jakarta-tomcat/src/admin/WEB-INF/classes/tadm AntProperty.java

clucas      01/05/17 21:46:38

  Modified:    src/admin/WEB-INF/classes/tadm AntProperty.java
  Log:
  minor change needed so that watchdog tests will run with tag pooling enabled
  
  Revision  Changes    Path
  1.2       +3 -0      jakarta-tomcat/src/admin/WEB-INF/classes/tadm/AntProperty.java
  
  Index: AntProperty.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/admin/WEB-INF/classes/tadm/AntProperty.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AntProperty.java	2001/01/29 06:46:18	1.1
  +++ AntProperty.java	2001/05/18 04:46:36	1.2
  @@ -56,6 +56,9 @@
   	if( value != null )
   	    antTag.setProperty( name, value );
   
  +   // reset value to default null
  +   value = null;
  +
   	return SKIP_BODY;
       }