Skip to content

Commit

Permalink
fixups (action status and parameters)
Browse files Browse the repository at this point in the history
  • Loading branch information
grapigeau committed Sep 10, 2024
2 parents e97c9a6 + da797cf commit fd8fa70
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,7 @@ private String createRequestBody() {
}

private String formatSetAsString(Set<String> set) {
return String.join(
",", set.stream().map(name -> ("\"" + name + "\"")).collect(Collectors.toList()));
return set.stream().map(name -> ("\"" + name + "\"")).collect(Collectors.joining(","));
}

@Override
Expand Down

0 comments on commit fd8fa70

Please sign in to comment.