mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
08.41.2018 c2489ecbd13878e205f8528eeb150d5cd0200d47
borgbutler-core/src/main/java/de/micromata/borgbutler/cache/RepoInfoCache.java
@@ -9,7 +9,7 @@
public class RepoInfoCache extends AbstractCache<RepoInfo> {
    private static Logger log = LoggerFactory.getLogger(RepoInfoCache.class);
    public static final String CACHE_REPOS_FILENAME = "cache-repos.json";
    public static final String CACHE_REPOS_BASENAME = "repos";
    public boolean matches(RepoInfo element, String identifier) {
        Repository repository = element.getRepository();
@@ -35,6 +35,6 @@
    }
    RepoInfoCache(File cacheDir) {
        super(cacheDir, CACHE_REPOS_FILENAME);
        super(cacheDir, CACHE_REPOS_BASENAME);
    }
}