3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-06 08:02:50 +02:00

fix chunk polling

Dieser Commit ist enthalten in:
Jesse Boyd 2019-11-01 22:59:10 +01:00
Ursprung 0c1fdcc498
Commit 6de30f8ed4
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 59F1DE6293AF6E1F

Datei anzeigen

@ -289,7 +289,7 @@ public class SingleThreadQueueExtent extends BatchProcessorHolder implements IQu
for (int i = 0; i < overflow; i++) {
Future first = submissions.poll();
try {
while ((first = (Future) first.get()) != null);
while (first != null) first = (Future) first.get();
} catch (InterruptedException | ExecutionException e) {
e.printStackTrace();
}