1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-01 01:35:59 +01: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;
} }