mirror of
https://github.com/SpigotMC/BungeeCord.git
synced 2024-11-04 01:30:25 +01:00
#2520: Fix ConcurrentModificationException when tasks are cancelled during shutdown
This commit is contained in:
parent
1bb826109c
commit
16b3490576
@ -62,10 +62,13 @@ public class BungeeScheduler implements TaskScheduler
|
||||
public int cancel(Plugin plugin)
|
||||
{
|
||||
Set<ScheduledTask> toRemove = new HashSet<>();
|
||||
synchronized ( lock )
|
||||
{
|
||||
for ( ScheduledTask task : tasksByPlugin.get( plugin ) )
|
||||
{
|
||||
toRemove.add( task );
|
||||
}
|
||||
}
|
||||
for ( ScheduledTask task : toRemove )
|
||||
{
|
||||
cancel( task );
|
||||
|
Loading…
Reference in New Issue
Block a user