Few small fixes

This commit is contained in:
Matthew Miller
2018-12-04 20:24:50 +10:00
parent 59f9864ba3
commit 618cbd2250
2 changed files with 6 additions and 4 deletions

View File

@ -73,7 +73,7 @@ public class ChunkBatchingExtent extends AbstractDelegateExtent {
}
public boolean commitRequired() {
return batches.size() > 0;
return enabled && batches.size() > 0;
}
@Override