1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 18:02:15 -05:00

Remove getUuid() from StoreConfig

This commit is contained in:
cketti 2014-12-16 03:32:57 +01:00
parent c608258494
commit 23d9310c61
2 changed files with 1 additions and 8 deletions

View File

@ -1,7 +1,6 @@
package com.fsck.k9.mail.store;
public interface StoreConfig {
String getUuid();
String getStoreUri();
String getTransportUri();

View File

@ -213,13 +213,7 @@ public class LocalStore extends Store implements Serializable {
}
}
/**
* Release reference to a local mail store instance.
*
* @param account
* {@link Account} instance that is used to get the local mail store instance.
*/
private static void removeInstance(StoreConfig account) {
private static void removeInstance(Account account) {
String accountUuid = account.getUuid();
sLocalStores.remove(accountUuid);
}