Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 04:50:05 +01:00
SPIGOT-210: Remove the exception when dropping a non-existant task
If the server crashes during chunk generation then the chunk would have never been added to the executor, this caused a second exception to be thrown when the server shutdown from the first exception
Dieser Commit ist enthalten in:
Ursprung
7bc218d1e2
Commit
20c65caae7
@ -263,7 +263,7 @@ public final class AsynchronousExecutor<P, T, C, E extends Throwable> {
|
|||||||
public boolean drop(P parameter, C callback) throws IllegalStateException {
|
public boolean drop(P parameter, C callback) throws IllegalStateException {
|
||||||
final Task task = tasks.get(parameter);
|
final Task task = tasks.get(parameter);
|
||||||
if (task == null) {
|
if (task == null) {
|
||||||
throw new IllegalStateException("Unknown " + parameter);
|
return true;
|
||||||
}
|
}
|
||||||
if (!task.callbacks.remove(callback)) {
|
if (!task.callbacks.remove(callback)) {
|
||||||
throw new IllegalStateException("Unknown " + callback + " for " + parameter);
|
throw new IllegalStateException("Unknown " + callback + " for " + parameter);
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren