From 3aec11f51972ef9bf8b8e136af9813b7993f6f65 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Sun, 30 Aug 2009 20:40:37 +0000 Subject: [PATCH] This is cloggin' the bureau loggin'. I'm pretty sure it's the BaseGameConfig. Typically, clients don't add directly to a StreamableHashMap received from the server, why would they? So let's just treat it as a String-key map and shut it up. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5937 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/as/com/threerings/util/StreamableHashMap.as | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/as/com/threerings/util/StreamableHashMap.as b/src/as/com/threerings/util/StreamableHashMap.as index d3da2d20f..98632c8c7 100644 --- a/src/as/com/threerings/util/StreamableHashMap.as +++ b/src/as/com/threerings/util/StreamableHashMap.as @@ -25,7 +25,6 @@ import com.threerings.io.ObjectInputStream; import com.threerings.io.ObjectOutputStream; import com.threerings.io.Streamable; -import com.threerings.util.Log; import com.threerings.util.Maps; import com.threerings.util.maps.ForwardingMap; @@ -71,9 +70,7 @@ public class StreamableHashMap extends ForwardingMap } } else { - // shit! - Log.getLog(this).warning("Empty StreamableHashMap read, guessing DictionaryMap."); - _source = Maps.newMapOf(Object); + _source = Maps.newMapOf(String); // hope for the best } } }