Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.4.0</version>
<version>3.5.0</version>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/jsoup/select/NodeFilter.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ public interface NodeFilter {
enum FilterResult {
/** Continue processing the tree */
CONTINUE,
/** Skip the child nodes, but do call {@link NodeFilter#tail(Node, int)} next. */
/** Skip this node's children, and call {@link NodeFilter#tail(Node, int)} on this node next. */
SKIP_CHILDREN,
/** Skip the subtree, and do not call {@link NodeFilter#tail(Node, int)}. */
/** Skip this node's children, and do not call {@link NodeFilter#tail(Node, int)}. */
SKIP_ENTIRELY,
/** Remove the node and its children */
REMOVE,
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/org/jsoup/select/NodeTraversor.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public static void traverse(NodeVisitor visitor, Elements elements) {
}

/**
Run a depth-first filtered traversal of the root and all of its descendants.
Run a depth-first controllable traversal of the root and all of its descendants.
@param filter NodeFilter visitor.
@param root the root node point to traverse.
@return The filter result of the root node, or {@link FilterResult#STOP}.
Expand Down Expand Up @@ -161,7 +161,7 @@ public static FilterResult filter(NodeFilter filter, Node root) {
}

/**
Run a depth-first filtered traversal of each Element.
Run a depth-first controllable traversal of each Element.
@param filter NodeFilter visitor.
@see NodeFilter
*/
Expand Down
Loading