Skip to content

Commit 84f9278

Browse files
committed
Better name
1 parent bf37499 commit 84f9278

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/src/org/labkey/core/security/SecurityApiActions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,10 +195,10 @@ protected List<Map<String, Object>> getGroupPerms(Container container, @NotNull
195195
groupPerms.put("isProjectGroup", group.isProjectGroup());
196196

197197
//add effective roles
198-
Set<String> effectiveRoleList = SecurityManager.getEffectiveRoles(container, group)
198+
Set<String> effectiveRoles = SecurityManager.getEffectiveRoles(container, group)
199199
.map(Role::getUniqueName)
200200
.collect(Collectors.toSet());
201-
groupPerms.put("roles", effectiveRoleList);
201+
groupPerms.put("roles", effectiveRoles);
202202
groupPerms.put("effectivePermissions", effectivePermissions);
203203

204204
if (isAdmin)

0 commit comments

Comments
 (0)