Smack/smack-tcp/src/main/java/org/jivesoftware/smack/tcp
Florian Schmaus 24b940138f Improve XMPPTCPConnection.processHandledCount(long)
Add shortcut: If stanzaAcknowledgedListeners is not empty, then we don't
need to check the stanzaIdAcknowledgedListeners.

Also fixes a bug, instead of

if (id != null && stanzaAcknowledgedListeners.contains(id)) {

it must be

if (id != null && stanzaIdAcknowledgedListeners.containsKey(id)) {
2015-01-13 13:31:45 +01:00
..
sm Rework XMPP Error class design 2014-11-25 13:19:32 +01:00
TCPInitializer.java Enable OSGi compliance via 'DynamicImport-Package: *' 2015-01-03 13:14:02 +01:00
XMPPTCPConnection.java Improve XMPPTCPConnection.processHandledCount(long) 2015-01-13 13:31:45 +01:00
XMPPTCPConnectionConfiguration.java Add XMPPTCPConnectionConfiguration.getConnectTimeout() 2015-01-07 14:35:22 +01:00