1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Fixed small indentation issue.

This commit is contained in:
cketti 2010-05-06 13:27:42 +00:00
parent e55d3019c3
commit 29e024b24e

View File

@ -4720,12 +4720,12 @@ public class MessagingController implements Runnable
Pusher pusher = store.getPusher(receiver);
if (pusher != null)
{
Pusher oldPusher = pushers.putIfAbsent(account, pusher);
if (oldPusher == null)
{
pusher.start(names);
}
}
Pusher oldPusher = pushers.putIfAbsent(account, pusher);
if (oldPusher == null)
{
pusher.start(names);
}
}
}
catch (Exception e)
{