From 24079b673d14a127a92d256267a4be85c5b1a031 Mon Sep 17 00:00:00 2001 From: Thialfihar Date: Sun, 4 Jul 2010 14:52:32 +0000 Subject: [PATCH] some old code removed --- src/com/fsck/k9/Account.java | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/src/com/fsck/k9/Account.java b/src/com/fsck/k9/Account.java index b037c8e98..f3be317fb 100644 --- a/src/com/fsck/k9/Account.java +++ b/src/com/fsck/k9/Account.java @@ -239,27 +239,6 @@ public class Account implements BaseAccount compressionMap.put(type, useCompression); } - // Between r418 and r431 (version 0.103), folder names were set empty if the Incoming settings were - // opened for non-IMAP accounts. 0.103 was never a market release, so perhaps this code - // should be deleted sometime soon - if (mDraftsFolderName == null || mDraftsFolderName.equals("")) - { - mDraftsFolderName = "Drafts"; - } - if (mSentFolderName == null || mSentFolderName.equals("")) - { - mSentFolderName = "Sent"; - } - if (mTrashFolderName == null || mTrashFolderName.equals("")) - { - mTrashFolderName = "Trash"; - } - if (mOutboxFolderName == null || mOutboxFolderName.equals("")) - { - mOutboxFolderName = "Outbox"; - } - // End of 0.103 repair - mAutoExpandFolderName = preferences.getPreferences().getString(mUuid + ".autoExpandFolderName", "INBOX");