1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-09-27 18:29:35 +02:00

s/connection()/connection/ in PingManager

This commit is contained in:
Florian Schmaus 2014-10-24 12:59:41 +02:00
parent 53bba50f91
commit 51d84647f3

View file

@ -188,7 +188,7 @@ public class PingManager extends Manager {
connection.createPacketCollectorAndSend(ping).nextResultOrThrow(pingTimeout); connection.createPacketCollectorAndSend(ping).nextResultOrThrow(pingTimeout);
} }
catch (XMPPException exc) { catch (XMPPException exc) {
return jid.equals(connection().getServiceName()); return jid.equals(connection.getServiceName());
} }
return true; return true;
} }