Index: ChangeLog =================================================================== RCS file: /cvsroot/classpath/classpath/ChangeLog,v retrieving revision 1.1712 diff -u -b -B -r1.1712 ChangeLog --- ChangeLog 26 Dec 2003 22:27:03 -0000 1.1712 +++ ChangeLog 26 Dec 2003 22:32:34 -0000 @@ -1,5 +1,9 @@ 2003-12-26 Michael Koch + * java/text/Format.java (serialVersionUID): Fixed value. + +2003-12-26 Michael Koch + * java/net/DatagramPacket.java (length): Made package-private to make it accessible via CNI. (maxlen): New field. Index: java/text/Format.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/text/Format.java,v retrieving revision 1.7 diff -u -b -B -r1.7 Format.java --- java/text/Format.java 24 Oct 2003 15:17:16 -0000 1.7 +++ java/text/Format.java 26 Dec 2003 22:32:34 -0000 @@ -1,5 +1,5 @@ /* Format.java -- Abstract superclass for formatting/parsing strings. - Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc. + Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -63,7 +63,7 @@ */ public abstract class Format implements Serializable, Cloneable { - static final long serialVersionUID = 4479235611355683992L; + static final long serialVersionUID = -299282585814624189L; public static class Field extends AttributedCharacterIterator.Attribute {