From 3b9fec185798c530053bad3464f5a96965d4b972 Mon Sep 17 00:00:00 2001 From: zzz Date: Tue, 3 Feb 2009 15:34:47 +0000 Subject: [PATCH] save a little space --- core/java/src/net/i2p/util/Clock.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/java/src/net/i2p/util/Clock.java b/core/java/src/net/i2p/util/Clock.java index 66d20721c..87cf9d639 100644 --- a/core/java/src/net/i2p/util/Clock.java +++ b/core/java/src/net/i2p/util/Clock.java @@ -28,7 +28,7 @@ public class Clock implements Timestamper.UpdateListener { _context = context; _offset = 0; _alreadyChanged = false; - _listeners = new HashSet(64); + _listeners = new HashSet(1); _timestamper = new Timestamper(context, this); _startedOn = System.currentTimeMillis(); _statCreated = false; @@ -149,4 +149,4 @@ public class Clock implements Timestamper.UpdateListener { public static interface ClockUpdateListener { public void offsetChanged(long delta); } -} \ No newline at end of file +}