You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by cu...@apache.org on 2002/08/29 18:07:57 UTC

cvs commit: xml-xalan/test/java/src/org/apache/qetest/xsl XHTComparatorXSLTC.java

curcuru     2002/08/29 09:07:57

  Modified:    test/java/src/org/apache/qetest/xsl XHTComparatorXSLTC.java
  Log:
  Update to use JDK 1.1.x compatible API for Vector.clear()
  
  Revision  Changes    Path
  1.4       +2 -2      xml-xalan/test/java/src/org/apache/qetest/xsl/XHTComparatorXSLTC.java
  
  Index: XHTComparatorXSLTC.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/test/java/src/org/apache/qetest/xsl/XHTComparatorXSLTC.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- XHTComparatorXSLTC.java	13 Jul 2002 23:30:29 -0000	1.3
  +++ XHTComparatorXSLTC.java	29 Aug 2002 16:07:57 -0000	1.4
  @@ -272,7 +272,7 @@
   	    }
   
   	    // Remove NS declarations from test attribute list
  -	    nsDeclarations.clear();
  +	    nsDeclarations.removeAllElements(); // Use JDK 1.1.x methods
   	    length = testAttrs.getLength();
   	    for (int i = 0; i < length; i++) {
   		final String name = testAttrs.item(i).getNodeName();
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org