private final Set getIgnoredNamesForResourceResolverType()

in core/src/main/java/org/apache/sling/testing/mock/sling/loader/ContentLoader.java [154:161]


    private final Set<String> getIgnoredNamesForResourceResolverType(ResourceResolverType resourceResolverType) {
        if (resourceResolverType == null || resourceResolverType == ResourceResolverType.JCR_OAK) {
            return OAK_IGNORED_NAMES;
        }
        else {
            return MOCK_IGNORED_NAMES;
        }
    }