From 234b00df27baaaad1be437136b71a0497920f0e7 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Wed, 8 Oct 2008 19:39:35 +0000 Subject: [PATCH] That's initialized in the constructor. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5423 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/client/Client.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/presents/client/Client.java b/src/java/com/threerings/presents/client/Client.java index 737a46da6..3652ac2b5 100644 --- a/src/java/com/threerings/presents/client/Client.java +++ b/src/java/com/threerings/presents/client/Client.java @@ -1075,7 +1075,7 @@ public class Client protected Interval _tickInterval; /** Our outgoing message throttle. */ - protected Throttle _outThrottle = new Throttle(DEFAULT_MAX_MSG_RATE[0], DEFAULT_MAX_MSG_RATE[1]); + protected Throttle _outThrottle; /** How often we recompute our time offset from the server. */ protected static final long CLOCK_SYNC_INTERVAL = 600 * 1000L;