Prune unneeded imports, nuke some unneeded casts, rerun code generators.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@687 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Dave Hoover
2008-07-28 17:27:38 +00:00
parent eb935ecfab
commit bcbe163a12
30 changed files with 43 additions and 71 deletions
@@ -98,8 +98,8 @@ public class IntSetStat extends SetStat<Integer>
public void unpersistFrom (ObjectInputStream in, AuxDataSource aux)
throws IOException, ClassNotFoundException
{
_maxSize = ((int)in.readByte()) + 128;
int numValues = ((int)in.readByte()) + 128;
_maxSize = in.readByte() + 128;
int numValues = in.readByte() + 128;
_intSet = new StreamableArrayIntSet(numValues);
for (int ii = 0; ii < numValues; ii++) {
_intSet.add(in.readInt());