Smack/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
..
src Improve XMPPTCPConnection.processHandledCount(long) 2015-01-13 13:31:45 +01:00
build.gradle Prefix subprojects with 'smack-' 2014-04-28 19:44:14 +02:00