You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by sb...@apache.org on 2001/06/19 23:36:02 UTC

cvs commit: xml-xalan/java/src/org/apache/xalan/transformer KeyRefIterator.java

sboag       01/06/19 14:36:02

  Modified:    java/src/org/apache/xalan/transformer KeyRefIterator.java
  Log:
  In spite of the comment, whereever it came from (probably me),
  reset really does have to call it's superclass reset.
  
  Revision  Changes    Path
  1.9       +1 -3      xml-xalan/java/src/org/apache/xalan/transformer/KeyRefIterator.java
  
  Index: KeyRefIterator.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/transformer/KeyRefIterator.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- KeyRefIterator.java	2001/06/15 05:14:08	1.8
  +++ KeyRefIterator.java	2001/06/19 21:36:01	1.9
  @@ -212,9 +212,7 @@
      */
     public void reset()
     {
  -    // I don't think we want to reset anything but the current position 
  -    // for this specialized iterator.
  -    // super.reset();
  +    super.reset();
       // setShouldCacheNodes(true);
       setCurrentPos(0);
     }
  
  
  

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