geforkt von Mirrors/FastAsyncWorldEdit
Simplify commit-required detection
Dieser Commit ist enthalten in:
Ursprung
351a8bbc6c
Commit
e202348dac
@ -104,7 +104,6 @@ import com.sk89q.worldedit.util.eventbus.EventBus;
|
||||
import com.sk89q.worldedit.world.NullWorld;
|
||||
import com.sk89q.worldedit.world.World;
|
||||
import com.sk89q.worldedit.world.biome.BaseBiome;
|
||||
import com.sk89q.worldedit.world.block.BaseBlock;
|
||||
import com.sk89q.worldedit.world.block.BlockCategories;
|
||||
import com.sk89q.worldedit.world.block.BlockState;
|
||||
import com.sk89q.worldedit.world.block.BlockStateHolder;
|
||||
@ -113,8 +112,6 @@ import com.sk89q.worldedit.world.block.BlockTypes;
|
||||
import com.sk89q.worldedit.world.registry.LegacyMapper;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.LinkedList;
|
||||
import java.util.List;
|
||||
@ -234,14 +231,15 @@ public class EditSession implements Extent, AutoCloseable {
|
||||
return event.getExtent();
|
||||
}
|
||||
|
||||
// pkg private for TracedEditSession only
|
||||
|
||||
ChunkBatchingExtent getChunkBatchingExtent() {
|
||||
return chunkBatchingExtent;
|
||||
// pkg private for TracedEditSession only, may later become public API
|
||||
boolean commitRequired() {
|
||||
if (isQueueEnabled() && reorderExtent.commitRequired()) {
|
||||
return true;
|
||||
}
|
||||
|
||||
MultiStageReorder getReorderExtent() {
|
||||
return reorderExtent;
|
||||
if (isBatchingChunks() && chunkBatchingExtent.commitRequired()) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -37,11 +37,8 @@ public class TracedEditSession extends EditSession {
|
||||
@Override
|
||||
protected void finalize() throws Throwable {
|
||||
super.finalize();
|
||||
if (!isQueueEnabled() && !isBatchingChunks()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (getChunkBatchingExtent().commitRequired() || getReorderExtent().commitRequired()) {
|
||||
if (commitRequired()) {
|
||||
WorldEdit.logger.warning("####### LEFTOVER BUFFER BLOCKS DETECTED #######");
|
||||
WorldEdit.logger.warning("This means that some code did not flush their EditSession.");
|
||||
WorldEdit.logger.log(Level.WARNING, "Here is a stacktrace from the creation of this EditSession:", stacktrace);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren