Skip to content

Commit

Permalink
LPS-114512 Keep last apostrophe for each organizationId
Browse files Browse the repository at this point in the history
  • Loading branch information
darquesdev committed May 28, 2020
1 parent 4ae164e commit c0fe1cb
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -80,7 +80,8 @@ public void contribute(
for (Organization organization : organizations) {
sb.append("'");
sb.append(organization.getOrganizationId());
sb.append("', ");
sb.append("'");
sb.append(", ");
}

if (!organizations.isEmpty()) {
Expand Down

0 comments on commit c0fe1cb

Please sign in to comment.