From a40ec8fa985b76a4b7917a08147c87b43ce36abc Mon Sep 17 00:00:00 2001 From: cketti Date: Tue, 18 Jan 2011 23:37:37 +0000 Subject: [PATCH] Removed unused variables and imports. --- src/com/fsck/k9/Account.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/com/fsck/k9/Account.java b/src/com/fsck/k9/Account.java index b15a2b75c..a405597b5 100644 --- a/src/com/fsck/k9/Account.java +++ b/src/com/fsck/k9/Account.java @@ -11,12 +11,10 @@ import com.fsck.k9.crypto.Apg; import com.fsck.k9.crypto.CryptoProvider; import com.fsck.k9.helper.Utility; import com.fsck.k9.mail.Address; -import com.fsck.k9.mail.Folder; import com.fsck.k9.mail.MessagingException; import com.fsck.k9.mail.Store; import com.fsck.k9.mail.store.LocalStore; import com.fsck.k9.mail.store.StorageManager; -import com.fsck.k9.mail.store.LocalStore.LocalFolder; import com.fsck.k9.mail.store.StorageManager.StorageProvider; import com.fsck.k9.view.ColorChip; @@ -635,14 +633,11 @@ public class Account implements BaseAccount } long startTime = System.currentTimeMillis(); AccountStats stats = new AccountStats(); - int unreadMessageCount = 0; - int flaggedMessageCount = 0; LocalStore localStore = getLocalStore(); if (K9.measureAccounts()) { stats.size = localStore.getSize(); } - Preferences prefs = Preferences.getPreferences(context); localStore.getMessageCounts(stats); long endTime = System.currentTimeMillis(); if (K9.DEBUG)