We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77bfcc4 commit 82d1f95Copy full SHA for 82d1f95
src/main/java/org/htmlunit/html/DomNodeIterator.java
@@ -14,6 +14,8 @@
14
*/
15
package org.htmlunit.html;
16
17
+import java.io.Serializable;
18
+
19
import org.w3c.dom.Node;
20
import org.w3c.dom.traversal.NodeFilter;
21
import org.w3c.dom.traversal.NodeIterator;
@@ -24,7 +26,7 @@
24
26
* @author Ahmed Ashour
25
27
* @author Ronald Brill
28
-public class DomNodeIterator implements NodeIterator {
29
+public class DomNodeIterator implements NodeIterator, Serializable {
30
31
private final DomNode root_;
32
private final int whatToShow_;
0 commit comments