local status: deletemessagelist: remove broken code

This did not work and is not usefull since the purge() method was introduced in
1410a391bc. Actually, the purge() does what deletemessagelist() was supposed to
achieve.

Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht
2016-07-25 14:50:08 +02:00
parent fbc3b15888
commit 5aa2a883f0
3 changed files with 5 additions and 26 deletions

View File

@ -369,13 +369,13 @@ class SyncableAccount(Account):
if not globals.options.singlethreading:
thread = InstanceLimitedThread(
limitNamespace = "%s%s"% (
limitNamespace="%s%s"% (
FOLDER_NAMESPACE, self.remoterepos.getname()),
target = syncfolder,
name = "Folder %s [acc: %s]"% (
target=syncfolder,
name="Folder %s [acc: %s]"% (
remotefolder.getexplainedname(), self),
args = (self, remotefolder, quick)
)
args=(self, remotefolder, quick)
)
thread.start()
folderthreads.append(thread)
else:
@ -533,17 +533,8 @@ def syncfolder(account, remotefolder, quick):
statusfolder = statusrepos.getfolder(remotefolder.getvisiblename().
replace(remoterepos.getsep(), statusrepos.getsep()))
statusfolder.openfiles()
if localfolder.get_uidvalidity() == None:
# This is a new folder, so delete the status cache to be
# sure we don't have a conflict.
# TODO: This does not work. We always return a value, need
# to rework this...
statusfolder.deletemessagelist()
statusfolder.cachemessagelist()
# Load local folder.
ui.syncingfolder(remoterepos, remotefolder, localrepos, localfolder)