Skip to content

Commit

Permalink
Revert set conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Apr 2, 2024
1 parent f596432 commit a312d2a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ public Set<String> getMultiTagValues(Set<String> refTags) {
.flatMap(v -> Arrays.stream(v.split(";")))
.map(String::strip)
.filter(v -> !v.isBlank())
.collect(Collectors.toSet());
.collect(Collectors.toUnmodifiableSet());
}

public OsmProvider getOsmProvider() {
Expand Down

0 comments on commit a312d2a

Please sign in to comment.