From affdcb05572dd5a1dc5c9550e8bd4a9e4dfca6f7 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Fri, 17 Aug 2018 12:23:35 +0200 Subject: [PATCH] Add TODO comment to FileBasedOpenPgpMetadataStore --- .../smackx/ox/store/filebased/FileBasedOpenPgpMetadataStore.java | 1 + 1 file changed, 1 insertion(+) diff --git a/smack-openpgp/src/main/java/org/jivesoftware/smackx/ox/store/filebased/FileBasedOpenPgpMetadataStore.java b/smack-openpgp/src/main/java/org/jivesoftware/smackx/ox/store/filebased/FileBasedOpenPgpMetadataStore.java index 233157ef3..dc2943c1f 100644 --- a/smack-openpgp/src/main/java/org/jivesoftware/smackx/ox/store/filebased/FileBasedOpenPgpMetadataStore.java +++ b/smack-openpgp/src/main/java/org/jivesoftware/smackx/ox/store/filebased/FileBasedOpenPgpMetadataStore.java @@ -79,6 +79,7 @@ public class FileBasedOpenPgpMetadataStore extends AbstractOpenPgpMetadataStore } static Map readFingerprintsAndDates(File source) throws IOException { + // TODO: Why do we not throw a FileNotFoundException here? if (!source.exists() || source.isDirectory()) { return new HashMap<>(); }