From c4e202ecd93be1454abd597aa1857683ceed1aa7 Mon Sep 17 00:00:00 2001 From: Marine Date: Mon, 16 Feb 2015 15:31:03 +0100 Subject: [PATCH] remove redundant assignment to FolderSettings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit removed null affectation because it’s done automatically --- .../main/java/com/fsck/k9/activity/setup/FolderSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k9mail/src/main/java/com/fsck/k9/activity/setup/FolderSettings.java b/k9mail/src/main/java/com/fsck/k9/activity/setup/FolderSettings.java index 737e2ffc3..c7780d778 100644 --- a/k9mail/src/main/java/com/fsck/k9/activity/setup/FolderSettings.java +++ b/k9mail/src/main/java/com/fsck/k9/activity/setup/FolderSettings.java @@ -67,7 +67,7 @@ public class FolderSettings extends K9PreferenceActivity { } boolean isPushCapable = false; - Store store = null; + Store store; try { store = mAccount.getRemoteStore(); isPushCapable = store.isPushCapable();