Remove now spurious casts

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@873 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Dave Hoover
2010-01-13 19:20:13 +00:00
parent f0eaa44cab
commit fc187ae697
2 changed files with 14 additions and 22 deletions
@@ -459,7 +459,7 @@ public class SparseMisoSceneModel extends MisoSceneModel
model._sections = new StreamableHashIntMap<Section>();
for (Iterator<Section> iter = getSections(); iter.hasNext(); ) {
Section sect = iter.next();
model.setSection((Section)sect.clone());
model.setSection(sect.clone());
}
return model;
}