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
1 changed files with 2 additions and 2 deletions

View File

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