save a little space

This commit is contained in:
zzz
2009-02-15 05:15:25 +00:00
parent cc3165bf72
commit 374360c7b4

View File

@ -41,7 +41,7 @@ class KBucketImpl implements KBucket {
public KBucketImpl(I2PAppContext context, Hash local) { public KBucketImpl(I2PAppContext context, Hash local) {
_context = context; _context = context;
_log = context.logManager().getLog(KBucketImpl.class); _log = context.logManager().getLog(KBucketImpl.class);
_entries = new ArrayList(64); //new HashSet(); _entries = new ArrayList(0); //all but the last 1 or 2 buckets will be empty
_lastShuffle = context.clock().now(); _lastShuffle = context.clock().now();
setLocal(local); setLocal(local);
} }