Skip to content

Commit

Permalink
Use explicit type instead of var
Browse files Browse the repository at this point in the history
  • Loading branch information
midgleyc committed Jan 21, 2025
1 parent 3017137 commit 67e0b64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jsoup/select/Selector.java
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ static Elements filterOut(Collection<Element> elements, Collection<Element> outs
Evaluator evaluator = QueryParser.parse(query);

for (Element root : roots) {
var first = Collector.findFirst(evaluator, root);
Element first = Collector.findFirst(evaluator, root);
if (first != null) {
return first;
}
Expand Down

0 comments on commit 67e0b64

Please sign in to comment.