Rename LocalFolder.delete() to deleteSettings()
This commit is contained in:
parent
88c12325b9
commit
d27180f55c
3 changed files with 3 additions and 3 deletions
|
@ -50,7 +50,7 @@ class K9BackendStorage(
|
|||
.filterNot { account.isSpecialFolder(it) }
|
||||
.map { localStore.getFolder(it) }
|
||||
.forEach {
|
||||
it.delete()
|
||||
it.deleteSettings()
|
||||
it.delete(true)
|
||||
}
|
||||
|
||||
|
|
|
@ -629,7 +629,7 @@ public class LocalFolder extends Folder<LocalMessage> {
|
|||
return getPrefId(serverId);
|
||||
}
|
||||
|
||||
public void delete() throws MessagingException {
|
||||
public void deleteSettings() throws MessagingException {
|
||||
String id = getPrefId();
|
||||
|
||||
StorageEditor editor = localStore.getPreferences().createStorageEditor();
|
||||
|
|
|
@ -50,7 +50,7 @@ class MigrationTo43 {
|
|||
}
|
||||
|
||||
// Now get rid of the localized outbox
|
||||
obsoleteOutbox.delete();
|
||||
obsoleteOutbox.deleteSettings();
|
||||
obsoleteOutbox.delete(true);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
|
|
Loading…
Reference in a new issue