3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-16 04:51:22 +02:00

Fixed up the commitRequired checks.

Dieser Commit ist enthalten in:
Matthew Miller 2018-12-09 15:15:34 +10:00
Ursprung 5f2c77b719
Commit 6f3016c7f0
4 geänderte Dateien mit 8 neuen und 6 gelöschten Zeilen

Datei anzeigen

@ -386,7 +386,9 @@ public class EditSession implements Extent, AutoCloseable {
* Returns queue status.
*
* @return whether the queue is enabled
* @deprecated Use {@link EditSession#getReorderMode()} with MULTI_STAGE instead.
*/
@Deprecated
public boolean isQueueEnabled() {
return reorderMode == ReorderMode.MULTI_STAGE && reorderExtent.isEnabled();
}

Datei anzeigen

@ -73,7 +73,7 @@ public class ChunkBatchingExtent extends AbstractDelegateExtent {
}
public boolean commitRequired() {
return enabled && batches.size() > 0;
return enabled;
}
@Override
@ -88,7 +88,7 @@ public class ChunkBatchingExtent extends AbstractDelegateExtent {
@Override
protected Operation commitBefore() {
if (!enabled) {
if (!commitRequired()) {
return null;
}
return new Operation() {

Datei anzeigen

@ -199,7 +199,7 @@ public class MultiStageReorder extends AbstractDelegateExtent implements Reorder
}
public boolean commitRequired() {
return enabled && stages.values().stream().anyMatch(stage -> stage.size() > 0);
return enabled;
}
/**
@ -248,7 +248,7 @@ public class MultiStageReorder extends AbstractDelegateExtent implements Reorder
@Override
public Operation commitBefore() {
if (!enabled) {
if (!commitRequired()) {
return null;
}
List<Operation> operations = new ArrayList<>();

Datei anzeigen

@ -114,12 +114,12 @@ public class FastModeExtent extends AbstractDelegateExtent {
}
public boolean commitRequired() {
return (enabled && !dirtyChunks.isEmpty()) || (postEditSimulation && !positions.isEmpty());
return enabled || postEditSimulation;
}
@Override
protected Operation commitBefore() {
if (!enabled && !postEditSimulation) {
if (!commitRequired()) {
return null;
}
return new Operation() {