CompoundEdit.java (serialVersionUID): Added.
authorSascha Brawer <brawer@dandelis.ch>
Sun, 11 Jan 2004 12:40:49 +0000 (13:40 +0100)
committerMichael Koch <mkoch@gcc.gnu.org>
Sun, 11 Jan 2004 12:40:49 +0000 (12:40 +0000)
2004-01-11  Sascha Brawer  <brawer@dandelis.ch>

* javax/swing/undo/CompoundEdit.java (serialVersionUID): Added.

From-SVN: r75671

libjava/ChangeLog
libjava/javax/swing/undo/CompoundEdit.java

index 1dd454efb7123d2d0d7595531e374aa742e645c1..c1d1f9f2e248ac2606f0a26f526ebe0aa7c2a345 100644 (file)
@@ -1,3 +1,7 @@
+2004-01-11  Sascha Brawer  <brawer@dandelis.ch>
+
+       * javax/swing/undo/CompoundEdit.java (serialVersionUID): Added.
+
 2004-01-11  Michael Koch  <konqueror@gmx.de>
 
        * javax/swing/undo/StateEditable.java
index 12ff2bd36ec9f1044d35a395262c122fbe852713..565a3279b20aa03b54913685cf98dee5338d1004 100644 (file)
@@ -1,5 +1,5 @@
 /* CompoundEdit.java -- Combines multiple UndoableEdits.
-   Copyright (C) 2002, 2003 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -63,6 +63,13 @@ import java.util.Vector;
 public class CompoundEdit
   extends AbstractUndoableEdit
 {
+  /**
+   * The identifier of this class in object serialization. Determined
+   * using the serialver tool of Sun J2SE 1.4.1_01.
+   */
+  private static final long serialVersionUID = -6512679249930119683L;
+
+
   /**
    * The <code>UndoableEdit</code>s being combined into a compound
    * editing action.