From 2fe2311e0680397c1f75e4cb73263e94c61849a4 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 19 Dec 2002 21:44:12 +0000 Subject: [PATCH] We override serialVersionUID in ComponentClass so we may as well do it in PriorityOverride as well. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2074 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/cast/ComponentClass.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/java/com/threerings/cast/ComponentClass.java b/src/java/com/threerings/cast/ComponentClass.java index c026ef238..1a752ec4a 100644 --- a/src/java/com/threerings/cast/ComponentClass.java +++ b/src/java/com/threerings/cast/ComponentClass.java @@ -1,5 +1,5 @@ // -// $Id: ComponentClass.java,v 1.7 2002/12/16 03:08:39 mdb Exp $ +// $Id: ComponentClass.java,v 1.8 2002/12/19 21:44:12 mdb Exp $ package com.threerings.cast; @@ -83,6 +83,10 @@ public class ComponentClass implements Serializable return "[pri=" + renderPriority + ", action=" + action + ", orients=" + orients + "]"; } + + /** Increase this value when object's serialized state is impacted + * by a class change (modification of fields, inheritance). */ + private static final long serialVersionUID = 1; } /** The component class name. */