summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanny Baumann <dannybaumann@web.de>2015-06-11 08:11:32 +0200
committerDanny Baumann <dannybaumann@web.de>2015-06-11 06:12:55 +0000
commitc0df55c08183e2948fb5c98d48d8bc5a37dcb7a2 (patch)
tree5faea143ee647bf7308a750a13945b630745eca8
parente7c9a851e1247f74c33c430ca427317fb9c6e91d (diff)
downloadandroid_packages_apps_Email-c0df55c08183e2948fb5c98d48d8bc5a37dcb7a2.tar.gz
android_packages_apps_Email-c0df55c08183e2948fb5c98d48d8bc5a37dcb7a2.tar.bz2
android_packages_apps_Email-c0df55c08183e2948fb5c98d48d8bc5a37dcb7a2.zip
Fix some more argument order issues.
Change-Id: I1ea17a0fba4ff3af03ee8c0acbe9967bed92aae1
-rw-r--r--provider_src/com/android/email/service/ImapService.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/provider_src/com/android/email/service/ImapService.java b/provider_src/com/android/email/service/ImapService.java
index 94dd20f68..1dddd7291 100644
--- a/provider_src/com/android/email/service/ImapService.java
+++ b/provider_src/com/android/email/service/ImapService.java
@@ -654,7 +654,7 @@ public class ImapService extends Service {
}
}
} catch (MessagingException me) {
- LogUtils.e(LOG_TAG, "Failed to process imap account " + id + " changes.", me);
+ LogUtils.e(LOG_TAG, me, "Failed to process imap account " + id + " changes.");
}
// Check if service should be started/stopped
@@ -667,7 +667,7 @@ public class ImapService extends Service {
try {
ImapIdleFolderHolder.getInstance().unregisterIdledMailboxLocked(id, true);
} catch (MessagingException me) {
- LogUtils.e(LOG_TAG, "Failed to process imap mailbox " + id + " changes.", me);
+ LogUtils.e(LOG_TAG, me, "Failed to process imap mailbox " + id + " changes.");
}
return;
}
@@ -706,7 +706,7 @@ public class ImapService extends Service {
}
}
} catch (MessagingException me) {
- LogUtils.e(LOG_TAG, "Failed to process imap mailbox " + id + " changes.", me);
+ LogUtils.e(LOG_TAG, me, "Failed to process imap mailbox " + id + " changes.");
}
}
@@ -734,7 +734,7 @@ public class ImapService extends Service {
Store remoteStore = Store.getInstance(account, mContext);
processPendingActionsSynchronous(mContext, account, remoteStore, false);
} catch (MessagingException me) {
- LogUtils.e(LOG_TAG, "Failed to process imap message " + id + " changes.", me);
+ LogUtils.e(LOG_TAG, me, "Failed to process imap message " + id + " changes.");
}
}
}