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
@@ -4,7 +4,7 @@ import flash.utils.ByteArray;
import flash.utils.IDataOutput;
import com.threerings.util.ClassUtil;
import com.threerings.util.SimpleMap;
import com.threerings.util.HashMap;
public class ObjectOutputStream
{
@@ -180,6 +180,6 @@ public class ObjectOutputStream
protected var _streamer :Streamer;
/** A map of classname to ClassMapping info. */
protected var _classMap :SimpleMap = new SimpleMap();
protected var _classMap :HashMap = new HashMap();
}
}