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
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user