Fix some more argument order issues.
Change-Id: I1ea17a0fba4ff3af03ee8c0acbe9967bed92aae1
This commit is contained in:
parent
b9532055e2
commit
03f09f6450
@ -655,7 +655,7 @@ public class ImapService extends Service {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (MessagingException me) {
|
} 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
|
// Check if service should be started/stopped
|
||||||
@ -668,7 +668,7 @@ public class ImapService extends Service {
|
|||||||
try {
|
try {
|
||||||
ImapIdleFolderHolder.getInstance().unregisterIdledMailboxLocked(id, true);
|
ImapIdleFolderHolder.getInstance().unregisterIdledMailboxLocked(id, true);
|
||||||
} catch (MessagingException me) {
|
} 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;
|
return;
|
||||||
}
|
}
|
||||||
@ -707,7 +707,7 @@ public class ImapService extends Service {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (MessagingException me) {
|
} 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);
|
Store remoteStore = Store.getInstance(account, mContext);
|
||||||
processPendingActionsSynchronous(mContext, account, remoteStore, false);
|
processPendingActionsSynchronous(mContext, account, remoteStore, false);
|
||||||
} catch (MessagingException me) {
|
} 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.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user