Few fixes for FastModeExtent.

This commit is contained in:
Matthew Miller
2018-11-15 19:18:22 +10:00
parent 36430863a1
commit b3f5bc030e
2 changed files with 14 additions and 6 deletions

View File

@ -246,6 +246,9 @@ public class EditSession implements Extent, AutoCloseable {
if (isBatchingChunks() && chunkBatchingExtent.commitRequired()) {
return true;
}
if (hasFastMode() && fastModeExtent.commitRequired()) {
return true;
}
return false;
}