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<>(); }