private boolean isExcluded()

in atomos.substrate.config/src/main/java/org/apache/felix/atomos/substrate/config/SubstrateService.java [144:161]


    private boolean isExcluded(String path)
    {
        for (String excludedName : EXCLUDE_NAMES)
        {
            if (path.endsWith(excludedName))
            {
                return true;
            }
        }
        for (String excludedPath : EXCLUDE_PATHS)
        {
            if (path.startsWith(excludedPath))
            {
                return true;
            }
        }
        return false;
    }