Added the keys() function to the Map interface, replaced instances of

SimpleMap with HashMap. Discarded SimpleMap.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4122 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-05-16 21:06:06 +00:00
parent 4aa8f5a5d5
commit 64e87bb907
12 changed files with 36 additions and 85 deletions
@@ -3,7 +3,7 @@ package com.threerings.presents.client {
import mx.collections.IViewCursor;
import mx.collections.ArrayCollection;
import com.threerings.util.SimpleMap;
import com.threerings.util.HashMap;
import com.threerings.presents.data.ListenerMarshaller;
@@ -346,10 +346,10 @@ public class InvocationDirector
/** Used to keep track of invocation service listeners which will
* receive responses from invocation service requests. */
protected var _listeners :SimpleMap = new SimpleMap();
protected var _listeners :HashMap = new HashMap();
/** Used to keep track of invocation notification receivers. */
protected var _receivers :SimpleMap = new SimpleMap();
protected var _receivers :HashMap = new HashMap();
/** All registered receivers are maintained in a list so that we can
* assign receiver ids to them when we go online. */