diff --git a/rm-server/source/java/org/alfresco/module/org_alfresco_module_rm/classification/SecurityClearanceServiceImpl.java b/rm-server/source/java/org/alfresco/module/org_alfresco_module_rm/classification/SecurityClearanceServiceImpl.java index 899613fe5d..017a449934 100644 --- a/rm-server/source/java/org/alfresco/module/org_alfresco_module_rm/classification/SecurityClearanceServiceImpl.java +++ b/rm-server/source/java/org/alfresco/module/org_alfresco_module_rm/classification/SecurityClearanceServiceImpl.java @@ -219,7 +219,7 @@ public class SecurityClearanceServiceImpl extends ServiceBaseImpl implements Sec * an empty list will be returned. * @return an immutable list of the levels that a user at the target level can see. */ - List restrictList(List allLevels, ClearanceLevel targetLevel) + private List restrictList(List allLevels, ClearanceLevel targetLevel) { int targetIndex = allLevels.indexOf(targetLevel); if (targetIndex == -1) { return Collections.emptyList(); }