Change that StreamableHashIntMap into a more standard StreamableHashMap

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@922 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Mike Thomas
2010-06-08 01:41:24 +00:00
parent 3865b20070
commit e3de56d12a
@@ -33,7 +33,7 @@ import com.samskivert.util.StringUtil;
import com.threerings.io.SimpleStreamableObject; import com.threerings.io.SimpleStreamableObject;
import com.threerings.util.StreamableHashIntMap; import com.threerings.util.StreamableHashMap;
import com.threerings.media.util.MathUtil; import com.threerings.media.util.MathUtil;
@@ -459,7 +459,7 @@ public class SparseMisoSceneModel extends MisoSceneModel
public SparseMisoSceneModel clone () public SparseMisoSceneModel clone ()
{ {
SparseMisoSceneModel model = (SparseMisoSceneModel)super.clone(); SparseMisoSceneModel model = (SparseMisoSceneModel)super.clone();
model._sections = new StreamableHashIntMap<Section>(); model._sections = StreamableHashMap.newMap();
for (Iterator<Section> iter = getSections(); iter.hasNext(); ) { for (Iterator<Section> iter = getSections(); iter.hasNext(); ) {
Section sect = iter.next(); Section sect = iter.next();
model.setSection(sect.clone()); model.setSection(sect.clone());
@@ -468,5 +468,5 @@ public class SparseMisoSceneModel extends MisoSceneModel
} }
/** Contains our sections in row major order. */ /** Contains our sections in row major order. */
protected StreamableHashIntMap<Section> _sections = new StreamableHashIntMap<Section>(); protected StreamableHashMap<Integer, Section> _sections = StreamableHashMap.newMap();
} }