From b367372dc6d77e549babb27a553316a71b6a8fcc Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Wed, 23 Apr 2008 18:07:59 +0000 Subject: [PATCH] Gah, I tried to abort the last commit so I could make this change, and instead my checkin message got mangled. *clearing throat* ..So our old way of doing things was pointlessly waiting a frame to handle network events. We also ran object subscribe/unsubscribe requests through the same queue, and now those are processed immediately. Everything seems ok, but let's keep an eye out. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5016 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/presents/client/ClientDObjectMgr.as | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/as/com/threerings/presents/client/ClientDObjectMgr.as b/src/as/com/threerings/presents/client/ClientDObjectMgr.as index afc73e579..7112c113c 100644 --- a/src/as/com/threerings/presents/client/ClientDObjectMgr.as +++ b/src/as/com/threerings/presents/client/ClientDObjectMgr.as @@ -374,9 +374,6 @@ public class ClientDObjectMgr /** A reference to our client instance. */ protected var _client :Client; - /** Our primary dispatch queue. */ - protected var _actions :Array = new Array(); - /** All of the distributed objects that are active on this client. */ protected var _ocache :HashMap = new HashMap();