From 01a39e500a2aa2004bc39b96e74b988ba814942c Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 7 Aug 2008 21:00:26 +0000 Subject: [PATCH] No longer need this tracking. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5298 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- .../com/threerings/presents/server/PresentsClient.java | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/java/com/threerings/presents/server/PresentsClient.java b/src/java/com/threerings/presents/server/PresentsClient.java index 11f138c55..274f9d5d3 100644 --- a/src/java/com/threerings/presents/server/PresentsClient.java +++ b/src/java/com/threerings/presents/server/PresentsClient.java @@ -23,7 +23,6 @@ package com.threerings.presents.server; import java.io.IOException; import java.net.InetAddress; -import java.util.Date; import java.util.Map; import java.util.TimeZone; @@ -557,10 +556,8 @@ public class PresentsClient } if (rec != null) { rec.unsubscribe(); - _subhist.put(oid, "Unmapped at " + new Date()); // TEMP } else { - log.warning("Missing subscription in unmap", "client", this, "oid", oid, - "history", _subhist.get(oid)); + log.warning("Missing subscription in unmap", "client", this, "oid", oid); } } @@ -570,13 +567,11 @@ public class PresentsClient */ protected void clearSubscrips (boolean verbose) { - String now = new Date().toString(); for (ClientProxy rec : _subscrips.values()) { if (verbose) { log.info("Clearing subscription", "client", this, "obj", rec.object.getOid()); } rec.unsubscribe(); - _subhist.put(rec.object.getOid(), "Cleared at " + now); // TEMP } _subscrips.clear(); } @@ -860,7 +855,6 @@ public class PresentsClient synchronized (_subscrips) { // make a note of this new subscription _subscrips.put(dobj.getOid(), this); - _subhist.put(dobj.getOid(), "Mapped at " + new Date()); // TEMP } subscribedToObject(dobj); @@ -1010,7 +1004,6 @@ public class PresentsClient protected Connection _conn; protected ClientObject _clobj; protected IntMap _subscrips = IntMaps.newHashIntMap(); - protected IntMap _subhist = IntMaps.newHashIntMap(); // TEMP protected ClassLoader _loader; /** The time at which this client started their session. */