mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-23 06:42:05 +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:
parent
ec815e376f
commit
4376cf5639
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue