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

Kai Reinhard
11.26.2018 caa74ca94c0bffe1d40a180600baf54e0de31d28
borgbutler-core/src/main/java/de/micromata/borgbutler/cache/ArchiveFilelistCache.java
@@ -62,6 +62,14 @@
        if (!file.exists()) {
            return null;
        }
        return load(file);
    }
    public FilesystemItem[] load(File file) {
        if (file.exists() == false) {
            log.error("File '" + file.getAbsolutePath() + "' doesn't exist. Can't get archive content files.");
            return null;
        }
        log.info("Loading archive content as file list from: " + file.getAbsolutePath());
        FilesystemItem[] list = null;
        try {