Smack/smack-tcp/src/main
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
..
java/org/jivesoftware/smack/tcp Improve XMPPTCPConnection.processHandledCount(long) 2015-01-13 13:31:45 +01:00
resources/org.jivesoftware.smack.tcp Enable OSGi compliance via 'DynamicImport-Package: *' 2015-01-03 13:14:02 +01:00