1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-18 09:34:53 +02:00
Smack/smack-tcp/src
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
..
main Improve XMPPTCPConnection.processHandledCount(long) 2015-01-13 13:31:45 +01:00
test/java/org/jivesoftware/smack/tcp Rework XMPP Error class design 2014-11-25 13:19:32 +01:00