mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 12:02:05 +01:00
Remove cruft in FileBasedOpenPgpMetadataStore
This commit is contained in:
parent
fb3009adb2
commit
e91a8336f6
1 changed files with 0 additions and 6 deletions
|
@ -56,7 +56,6 @@ import org.pgpainless.key.OpenPgpV4Fingerprint;
|
|||
public class FileBasedOpenPgpMetadataStore extends AbstractOpenPgpMetadataStore {
|
||||
|
||||
public static final String ANNOUNCED = "announced.list";
|
||||
public static final String RETRIEVED = "retrieved.list";
|
||||
|
||||
private static final Logger LOGGER = Logger.getLogger(FileBasedOpenPgpMetadataStore.class.getName());
|
||||
|
||||
|
@ -147,9 +146,4 @@ public class FileBasedOpenPgpMetadataStore extends AbstractOpenPgpMetadataStore
|
|||
private File getAnnouncedFingerprintsPath(BareJid contact) {
|
||||
return new File(FileBasedOpenPgpStore.getContactsPath(basePath, contact), ANNOUNCED);
|
||||
}
|
||||
|
||||
// TODO: This method appears to be unused. Remove it?
|
||||
private File getRetrievedFingerprintsPath(BareJid contact) {
|
||||
return new File(FileBasedOpenPgpStore.getContactsPath(basePath, contact), RETRIEVED);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue