Skip to content

Commit

Permalink
Cleanup of results
Browse files Browse the repository at this point in the history
  • Loading branch information
dfuchss committed Sep 26, 2024
1 parent 1af8a8d commit 4b3083d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ protected void process() {
componentNames = componentNames.stream()
.map(it -> it.replaceAll("[^a-zA-Z0-9 \\-_]", "").replaceAll("\\s+", " ").trim())
.map(it -> it.replace("Components", "").replace("Component", "").trim())
.map(it -> it.replace(" ", ""))
.filter(it -> !it.isBlank())
.distinct()
.sorted()
Expand Down

0 comments on commit 4b3083d

Please sign in to comment.