Fix compilation issue from previous commit

This commit is contained in:
Colin McDonald 2016-11-21 21:16:57 -05:00
parent 74570ccbc0
commit a72f10618a
1 changed files with 1 additions and 1 deletions

View File

@ -349,7 +349,7 @@ public final class User {
// result.put("user", this);
result.put("ranks", Collections2.transform(ranks, Rank::getId));
Map<String, List<String>> scopeRanks = new HashMap<>();
Map<String, Collection<String>> scopeRanks = new HashMap<>();
for (ServerGroup scope : ServerGroup.findAll()) {
List<Rank> ranksOnScope = getRanksScoped(scope, grants);