1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-23 14:52:06 +01:00

Fixed notification problem with Roster that was making XMPPConnection#getRoster() to take too long. SMACK-63

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2506 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2005-06-28 17:48:04 +00:00 committed by gaston
parent ec815e376f
commit 4376cf5639

View file

@ -768,9 +768,9 @@ public class Roster {
} }
// Mark the roster as initialized. // Mark the roster as initialized.
synchronized (this) { synchronized (Roster.this) {
rosterInitialized = true; rosterInitialized = true;
notifyAll(); Roster.this.notifyAll();
} }
// Fire event for roster listeners. // Fire event for roster listeners.