Missed a spot where getStreamer() was called which motivated further changing

around of the interface (I wanted to automatically call getStreamerClass() for
the caller but that turns out not to be possible when unstreaming so fuck it).


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4373 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2006-09-12 01:09:01 +00:00
parent 13bcdf769d
commit 54d3bb6496
2 changed files with 10 additions and 7 deletions
@@ -93,16 +93,14 @@ public class ObjectOutputStream extends DataOutputStream
_classmap = new HashMap<Class,ClassMapping>();
}
// otherwise, look up the class mapping record (if the target class is
// an enum, convert it from its potentially enum-value specific class
// to the main class for that enum)
// otherwise, look up the class mapping record
Class sclass = Streamer.getStreamerClass(object);
ClassMapping cmap = _classmap.get(sclass);
// create a class mapping for this class if we've not got one
if (cmap == null) {
// create a streamer instance and assign a code to this class
Streamer streamer = Streamer.getStreamer(object);
Streamer streamer = Streamer.getStreamer(sclass);
// we specifically do not inline the getStreamer() call
// into the ClassMapping constructor because we want to be
// sure not to call _nextCode++ if getStreamer() throws an
@@ -148,7 +146,8 @@ public class ObjectOutputStream extends DataOutputStream
public void writeBareObject (Object object)
throws IOException
{
writeBareObject(object, Streamer.getStreamer(object), true);
writeBareObject(object, Streamer.getStreamer(
Streamer.getStreamerClass(object)), true);
}
/**