make SUGGESTED_FIRST_SEGMENT_WORDS the default
This commit is contained in:
parent
0ff0cfa338
commit
3c60400dae
1 changed files with 1 additions and 4 deletions
|
@ -7,7 +7,7 @@ import org.capnproto.BuilderArena.AllocationStrategy;
|
||||||
class DefaultAllocator implements Allocator {
|
class DefaultAllocator implements Allocator {
|
||||||
|
|
||||||
// (minimum) number of bytes in the next allocation
|
// (minimum) number of bytes in the next allocation
|
||||||
private int nextSize = 0;
|
private int nextSize = BuilderArena.SUGGESTED_FIRST_SEGMENT_WORDS;
|
||||||
|
|
||||||
public enum ByteBufferAllocationStyle {
|
public enum ByteBufferAllocationStyle {
|
||||||
REGULAR,
|
REGULAR,
|
||||||
|
@ -53,9 +53,6 @@ class DefaultAllocator implements Allocator {
|
||||||
this.nextSize += size;
|
this.nextSize += size;
|
||||||
break;
|
break;
|
||||||
case FIXED_SIZE:
|
case FIXED_SIZE:
|
||||||
if (nextSize == 0) {
|
|
||||||
nextSize = size;
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue