google-collect upgrade

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5745 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Charlie Groves
2009-04-24 23:01:40 +00:00
parent 510ddbb717
commit 749ab8e1bb
3 changed files with 4 additions and 4 deletions
@@ -21,8 +21,8 @@
package com.threerings.presents.server;
import com.google.common.collect.ArrayListMultimap;
import com.google.common.collect.Multimap;
import com.google.common.collect.Multimaps;
import com.google.inject.Singleton;
import com.samskivert.util.Interval;
@@ -185,7 +185,7 @@ public class ReportManager
protected long _lastReportStamp = _serverStartTime;
/** Used to generate "state of server" reports. */
protected Multimap<String, Reporter> _reporters = Multimaps.newArrayListMultimap();
protected Multimap<String, Reporter> _reporters = ArrayListMultimap.create();
/** The frequency with which we generate "state of server" reports. */
protected static final long REPORT_INTERVAL = 15 * 60 * 1000L;