From cb67a21a9311d3c31f31c34bc74e7f45deae1eb1 Mon Sep 17 00:00:00 2001 From: cketti Date: Thu, 4 Sep 2014 21:58:18 +0200 Subject: [PATCH] Remove commented-out code --- src/com/fsck/k9/controller/MessagingController.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/com/fsck/k9/controller/MessagingController.java b/src/com/fsck/k9/controller/MessagingController.java index f9d2027ea..bd60912f6 100644 --- a/src/com/fsck/k9/controller/MessagingController.java +++ b/src/com/fsck/k9/controller/MessagingController.java @@ -4624,21 +4624,11 @@ public class MessagingController implements Runnable { if (modeMismatch(aDisplayMode, fDisplayClass)) { // Never notify a folder that isn't displayed - /* - if (K9.DEBUG) - Log.v(K9.LOG_TAG, "Not notifying folder " + localFolder.getName() + - " which is in display mode " + fDisplayClass + " while account is in display mode " + aDisplayMode); - */ return false; } if (modeMismatch(aNotifyMode, fNotifyClass)) { // Do not notify folders in the wrong class - /* - if (K9.DEBUG) - Log.v(K9.LOG_TAG, "Not notifying folder " + localFolder.getName() + - " which is in notify mode " + fNotifyClass + " while account is in notify mode " + aNotifyMode); - */ return false; }