private boolean isIgnoredPath()

in src/main/java/org/apache/sling/jcr/contentparser/impl/JcrXmlContentParser.java [144:153]


        private boolean isIgnoredPath(String path) {
            if (StringUtils.isEmpty(path)) {
                return false;
            }
            if (ignoredPaths.contains(path)) {
                return true;
            }
            String parentPath = StringUtils.substringBeforeLast(path, "/");
            return isIgnoredPath(parentPath);
        }