1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-24 02:12:15 -05:00

Avoid allocating two temp variables on sync

This commit is contained in:
Jesse Vincent 2010-08-08 19:14:47 +00:00
parent f5a399f6c6
commit 06a3d5985b

View File

@ -4389,9 +4389,7 @@ public class MessagingController implements Runnable
account.setRingNotified(false);
try
{
AccountStats stats = account.getStats(context);
int unreadMessageCount = stats.unreadMessageCount;
if (unreadMessageCount == 0)
if (account.getStats(context).unreadMessageCount == 0)
{
notifyAccountCancel(context, account);
}