Skip to content

Commit

Permalink
correct suspension email
Browse files Browse the repository at this point in the history
  • Loading branch information
cgeorgilakis-grnet committed Nov 16, 2023
1 parent d8b1cfc commit dc71542
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private String subgroupsStrCalculation(List<String> subgroupsPaths) {
return "";

StringBuilder sb = new StringBuilder(subgroupsStr);
subgroupsPaths.stream().forEach(x -> sb.append("x").append(comma));
subgroupsPaths.stream().forEach(x -> sb.append(x).append(comma));
return StringUtils.removeEnd(sb.toString(), comma) + "- ";
}

Expand Down

0 comments on commit dc71542

Please sign in to comment.