Format.java (serialVersionUID): Fixed value.

2003-12-11  Michael Koch  <konqueror@gmx.de>

	* java/text/Format.java (serialVersionUID): Fixed value.

From-SVN: r74540
This commit is contained in:
Michael Koch 2003-12-11 16:12:47 +00:00 committed by Michael Koch
parent 7b9b3ed32c
commit 226c4112cc
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2003-12-11 Michael Koch <konqueror@gmx.de>
* java/text/Format.java (serialVersionUID): Fixed value.
2003-12-11 Michael Koch <konqueror@gmx.de>
* javax/naming/event/EventDirContext.java: Jalopied.

View File

@ -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 @@ import java.io.Serializable;
*/
public abstract class Format implements Serializable, Cloneable
{
static final long serialVersionUID = 4479235611355683992L;
static final long serialVersionUID = -299282585814624189L;
public static class Field extends AttributedCharacterIterator.Attribute
{