mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-02 22:59:57 +01:00
returning if a thread is not alive should happen before any changes to
the list of workers, hence the return statement should be in the synchronized block.
This commit is contained in:
parent
6269c1e633
commit
30d1a5d3fd
1 changed files with 2 additions and 2 deletions
|
@ -61,8 +61,8 @@ public class CraftThreadManager {
|
||||||
return craftWorker.isAlive();
|
return craftWorker.isAlive();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// didn't find it, so it must have been removed
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
// didn't find it, so it must have been removed
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue