mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-09 17:19:39 +02:00
Remove unnecessary synchronization in SmackReater.schedule()
The DelayQueue 'scheduledActions' is already thread-safe.
This commit is contained in:
parent
619b8e6f4a
commit
027cae3bd0
1 changed files with 1 additions and 3 deletions
|
@ -149,9 +149,7 @@ public class SmackReactor {
|
||||||
long releaseTimeEpoch = System.currentTimeMillis() + unit.toMillis(delay);
|
long releaseTimeEpoch = System.currentTimeMillis() + unit.toMillis(delay);
|
||||||
Date releaseTimeDate = new Date(releaseTimeEpoch);
|
Date releaseTimeDate = new Date(releaseTimeEpoch);
|
||||||
ScheduledAction scheduledAction = new ScheduledAction(runnable, releaseTimeDate, this);
|
ScheduledAction scheduledAction = new ScheduledAction(runnable, releaseTimeDate, this);
|
||||||
synchronized (scheduledActions) {
|
scheduledActions.add(scheduledAction);
|
||||||
scheduledActions.add(scheduledAction);
|
|
||||||
}
|
|
||||||
return scheduledAction;
|
return scheduledAction;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue