public void addAllowRestrictionToDelete()

in src/main/java/org/apache/sling/starter/access/models/PrivilegeItem.java [158:163]


    public void addAllowRestrictionToDelete(String restrictionName) {
        if (allowRestrictionsToDelete == null) {
            allowRestrictionsToDelete = new HashSet<>();
        }
        allowRestrictionsToDelete.add(restrictionName);
    }