This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: Patch: javax.swing.undo.CompoundEdit


Hi list,


I commited the attached patch to merge a fix from Sascha Brawer in classpath 
to libgcj.


Michael


2004-01-11  Sascha Brawer  <brawer@dandelis.ch>

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

Index: javax/swing/undo/CompoundEdit.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/swing/undo/CompoundEdit.java,v
retrieving revision 1.3
diff -u -b -B -r1.3 CompoundEdit.java
--- javax/swing/undo/CompoundEdit.java	26 Nov 2003 22:23:40 -0000	1.3
+++ javax/swing/undo/CompoundEdit.java	11 Jan 2004 12:39:35 -0000
@@ -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 @@
 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.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]