I'm checking this in.

This is a small serialization fix in java.text.

Tom

Index: ChangeLog
from  Tom Tromey  <[EMAIL PROTECTED]>

        * java/text/DateFormat.java (serialVersionUID): New field.

Index: java/text/DateFormat.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/text/DateFormat.java,v
retrieving revision 1.22
diff -u -r1.22 DateFormat.java
--- java/text/DateFormat.java 26 Jul 2005 14:51:16 -0000 1.22
+++ java/text/DateFormat.java 19 Sep 2005 15:57:56 -0000
@@ -58,6 +58,9 @@
 
 public abstract class DateFormat extends Format implements Cloneable
 {
+  private static final long serialVersionUID = 7218322306649953788L;
+
+  // Names fixed by serialization spec.
   protected Calendar calendar;
   protected NumberFormat numberFormat;
 


_______________________________________________
Classpath-patches mailing list
Classpath-patches@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-patches

Reply via email to