Skip to content

Commit

Permalink
Add fix (#33)
Browse files Browse the repository at this point in the history
Signed-off-by: Bogdan Vaneev <warchantua@gmail.com>
  • Loading branch information
Warchant authored Jul 24, 2019
1 parent 8a16104 commit 4d65459
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,9 @@ public TransactionBuilder grantPermissions(
String accountId,
Iterable<GrantablePermission> permissions
) {
permissions.forEach(p -> this.grantPermission(accountId, p));
for(GrantablePermission p : permissions) {
this.grantPermission(accountId, p);
}
return this;
}

Expand Down

0 comments on commit 4d65459

Please sign in to comment.