Fixed up some things and added streaming translations.

I'm to the point where I need to go back to array streaming and straighten
that out.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3905 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-03-02 03:44:37 +00:00
parent 961f3ffdfe
commit cec3ffe59d
5 changed files with 56 additions and 7 deletions
@@ -298,8 +298,7 @@ public class ClientDObjectMgr
_ocache[oid] = obj;
// let the penders know that the object is available
var req :PendingRequest = _penders[oid];
_penders[oid] = undefined;
var req :PendingRequest = (_penders.remove(oid) as PendingRequest);
if (req == null) {
Log.warning("Got object, but no one cares?! " +
"[oid=" + oid + ", obj=" + obj + "].");
@@ -368,7 +367,7 @@ public class ClientDObjectMgr
// otherwise we need to create a new request
req = new PendingRequest(oid);
req.addTarget(target);
_penders.put(oid, req);
_penders[oid] = req;
// Log.info("Registering pending request [oid=" + oid + "].");
// and issue a request to get things rolling