Skip to content

Commit

Permalink
Revert set conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Mar 28, 2024
1 parent 3005f43 commit da83c94
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 da83c94

Please sign in to comment.