Skip to content

Commit

Permalink
[PR #295] remove parallel stream
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaskabc authored and ledsoft committed Sep 13, 2024
1 parent c396895 commit 1104c60
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,6 @@ public HtmlSelectorGenerators(Configuration config) {
* @return Set of generated selectors
*/
public Set<Selector> generateSelectors(Element... elements) {
return generators.parallelStream().map(g -> g.generateSelector(elements)).collect(Collectors.toSet());
return generators.stream().map(g -> g.generateSelector(elements)).collect(Collectors.toSet());
}
}

0 comments on commit 1104c60

Please sign in to comment.