mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Move variables into loop in Roster.waitUntilLoaded()
This commit is contained in:
parent
4a5732d679
commit
1f59a755d8
1 changed files with 2 additions and 2 deletions
|
@ -234,9 +234,9 @@ public class Roster {
|
|||
}
|
||||
|
||||
protected boolean waitUntilLoaded() {
|
||||
long waitTime = connection.getPacketReplyTimeout();
|
||||
long start = System.currentTimeMillis();
|
||||
while (!loaded) {
|
||||
long waitTime = connection.getPacketReplyTimeout();
|
||||
long start = System.currentTimeMillis();
|
||||
if (waitTime <= 0) {
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue