Added serialVersionUID to the various classes we serialize for

configuration reasons to avoid annoying "recompile and nothing works"
phenomenon. We'll opt for the "make incompatible class change and nothing
works" scenario instead.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1650 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-08-19 22:28:05 +00:00
parent b4d997a8df
commit 4cbd454b24
6 changed files with 30 additions and 6 deletions
@@ -1,5 +1,5 @@
//
// $Id: TileSetBundle.java,v 1.7 2002/06/19 08:28:55 mdb Exp $
// $Id: TileSetBundle.java,v 1.8 2002/08/19 22:28:05 mdb Exp $
package com.threerings.media.tile.bundle;
@@ -120,4 +120,8 @@ public class TileSetBundle extends HashIntMap
/** We use the image manager to decode our images. */
protected ImageManager _imgr;
/** Increase this value when object's serialized state is impacted by
* a class change (modification of fields, inheritance). */
private long serialVersionUID = 1;
}