Or we'll just fix the bug. How did any of this ever work?

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4658 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2007-04-10 00:54:20 +00:00
parent b24fd5c408
commit 32a97f5b18
@@ -123,12 +123,9 @@ public class PresentsDObjectMgr
int origObjectId = object.getOid(); int origObjectId = object.getOid();
// register the object locally which will reassign its oid and set us as its manager // register the object locally which will reassign its oid and set us as its manager
registerObject(object); registerObject(object);
// TEMP: log all proxied objects while we look into weirdness
log.info("Proxying " + origObjectId + " as " + object.getOid() +
" [type=" + object.getClass().getName() + "].");
// and note a proxy reference for the object which we'll use to forward events back to its // and note a proxy reference for the object which we'll use to forward events back to its
// originating manager after converting them back to the original oid // originating manager after converting them back to the original oid
_proxies.put(origObjectId, new ProxyReference(object.getOid(), omgr)); _proxies.put(object.getOid(), new ProxyReference(origObjectId, omgr));
} }
/** /**