File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/main/java/org/jsoup/nodes Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -522,7 +522,8 @@ public boolean is(Evaluator evaluator) {
522522
523523 @param xpath XPath expression
524524 @return matching elements, or an empty list if none match.
525- @since 1.14.3.
525+ @see #selectXpath(String, Class)
526+ @since 1.14.3
526527 */
527528 public Elements selectXpath (String xpath ) {
528529 return new Elements (NodeUtils .selectXpath (xpath , this , Element .class ));
@@ -539,6 +540,7 @@ public Elements selectXpath(String xpath) {
539540 @param nodeType the jsoup node type to return
540541 @see #selectXpath(String)
541542 @return a list of matching nodes
543+ @since 1.14.3
542544 */
543545 public <T extends Node > List <T > selectXpath (String xpath , Class <T > nodeType ) {
544546 return NodeUtils .selectXpath (xpath , this , nodeType );
You can’t perform that action at this time.
0 commit comments