Occam's razor.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3827 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2006-02-03 01:02:41 +00:00
parent 56b985beb4
commit 39565a6d92
@@ -1,5 +1,5 @@
//
// $Id: TileSetBundle.java,v 1.16 2004/08/27 02:12:43 mdb Exp $
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2004 Three Rings Design, Inc., All Rights Reserved
@@ -121,7 +121,7 @@ public class TileSetBundle extends HashIntMap
Iterator entries = entrySet().iterator();
while (entries.hasNext()) {
Entry entry = (Entry)entries.next();
out.writeInt(((Integer)entry.getKey()).intValue());
out.writeInt(entry.getIntKey());
out.writeObject(entry.getValue());
}
}