in src/main/java/org/apache/sling/jackrabbit/usermanager/impl/post/AbstractAuthorizablePostServlet.java [392:407]
protected void processDeletes(Authorizable authorizable,
Collection<RequestProperty> reqProperties,
List<Modification> changes) throws RepositoryException {
for (RequestProperty property : reqProperties) {
if (property.isDelete()) {
// SLING-7901 - remove artificial "/" prepended to the prop path
String relativePath = property.getPath().substring(1);
if (authorizable.hasProperty(relativePath)) {
authorizable.removeProperty(relativePath);
changes.add(Modification.onDeleted(relativePath));
}
}
}
}