Yay Morten!

I saw your patch to DOMImpl.NodeValueIterator for #5152 and am wondering if
the same sorta fix should be applied to MultiDom.NodeValueIterator as well
(I'm also noticing a perhaps-errornous this._isRestartable flag that is
being set)?

MultiDOM.javaV1.15L190:

public NodeIterator cloneIterator() {
    try {
        NodeValueIterator clone = (NodeValueIterator)super.clone();
        clone._source = _source.cloneIterator();
        clone._value = _value;
        clone._op = _op;
        _isRestartable = false;
        return clone.reset();
    }
    catch (CloneNotSupportedException e) {

Amazing bug turn-around!

cheers,

john

Reply via email to