in src/main/java/org/apache/sling/contentparser/xml/jcr/internal/JCRXMLContentParser.java [168:182]
private boolean isIgnoredPath(String path) {
if (path == null || path.isEmpty()) {
return false;
}
if (ignoredPaths.contains(path)) {
return true;
}
if (path.indexOf('/') > -1) {
String parentPath = path.substring(0, path.lastIndexOf('/'));
return isIgnoredPath(parentPath);
} else {
return isIgnoredPath(path);
}
}