private boolean pathMatches()

in src/main/java/org/apache/sling/fsprovider/internal/mapper/FileVaultResourceMapper.java [230:240]


    private boolean pathMatches(String path) {
        // ignore .dir folder
        if (StringUtils.endsWith(path, DOT_DIR_SUFFIX) || StringUtils.endsWith(path, DOT_CONTENT_XML_SUFFIX)) {
            return false;
        }
        if (workspaceFilter == null) {
            return true;
        } else {
            return workspaceFilter.contains(path);
        }
    }