Hi all,
It seems to me that DOMImpl::PrecedingIterator::reset() suffers from a
cut-and-paste typo (possible from setMark). And that it should bear most
resemblance to gotoMark().
cheers,
john
DIFF
----
--- DOMImpl.java 2001/06/12 13:22:05 1.11
+++ DOMImpl.java 2001/07/03 22:13:47
@@ -1039,7 +1039,7 @@
// redefine NodeIteratorBase's reset
public NodeIterator reset() {
_node = ROOTNODE;
- _spStart = _sp;
+ _sp = _spStart;
return resetPosition();
}
