1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-24 02:12:15 -05: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); Pusher pusher = store.getPusher(receiver);
if (pusher != null) if (pusher != null)
{ {
Pusher oldPusher = pushers.putIfAbsent(account, pusher); Pusher oldPusher = pushers.putIfAbsent(account, pusher);
if (oldPusher == null) if (oldPusher == null)
{ {
pusher.start(names); pusher.start(names);
} }
} }
} }
catch (Exception e) catch (Exception e)
{ {