Fix some more argument order issues.

Change-Id: I1ea17a0fba4ff3af03ee8c0acbe9967bed92aae1
This commit is contained in:
Danny Baumann 2015-06-11 08:11:32 +02:00 committed by Steve Kondik
parent b9532055e2
commit 03f09f6450
1 changed files with 4 additions and 4 deletions

View File

@ -655,7 +655,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
@ -668,7 +668,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;
}
@ -707,7 +707,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.");
}
}
@ -735,7 +735,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.");
}
}
}