Set segment length in SegmentedSubnodeList down to 1000 from 10000.

This commit is contained in:
hns 2009-05-06 13:16:26 +00:00
parent f6663fe987
commit 567266fdfc

View file

@ -16,7 +16,7 @@ import java.util.*;
public class SegmentedSubnodeList extends SubnodeList {
transient Segment[] segments;
static int SEGLENGTH = 10000;
static int SEGLENGTH = 1000;
transient long lastSubnodeCount = 0;
transient int subnodeCount = -1;