Skip to content

Commit

Permalink
fix compile
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Mar 12, 2024
1 parent 9048e90 commit 287c210
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ public static <C> ParserDescriptor<C, UUID> userParser() {
.map(profile -> profile.name().orElse(null))
.filter(Objects::nonNull)
.filter(name -> suggestions.stream().noneMatch(s -> s.suggestion().equals(name)))
.map(Suggestion::simple)
.map(Suggestion::suggestion)
.collect(Collectors.toList()));
}
return suggestions;
Expand Down

0 comments on commit 287c210

Please sign in to comment.