[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH]
From: |
Dalibor Topic |
Subject: |
[PATCH] |
Date: |
Sun, 18 Nov 2001 14:12:51 -0800 (PST) |
Hi,
classpath's [1] implementation of the interface
java.io.Serializable does
not have a serial version uid, while the jdk one has,
according to the
output of serialver on jdk1.3.1. Attached is a single
line patch which
fixes that.
* java/io/Serializable.java:
(serialVersionUID): Add missing field.
have fun,
Dalibor Topic
[1] and libgcj's.
=====
"Success means never having to wear a suit"
__________________________________________________
Do You Yahoo!?
Find the one for you at Yahoo! Personals
http://personals.yahoo.com
--- classpath/java/io/Serializable.java Sat Nov 17 15:00:13 2001
+++ patched/java/io/Serializable.java Sat Nov 17 16:04:01 2001
@@ -40,6 +40,7 @@
*/
public interface Serializable
{
+ static final long serialVersionUID = 1196656838076753133L;
} // interface Serializable
- [PATCH],
Dalibor Topic <=