From ea7f51a4af057b3a231b25fc037417373a5421cd Mon Sep 17 00:00:00 2001 From: Warren Levy Date: Fri, 10 Mar 2000 05:10:40 +0000 Subject: Key.java (serialVersionUID): Set to 0 for now. * java/security/Key.java(serialVersionUID): Set to 0 for now. * java/security/interfaces/DSAPrivateKey.java(serialVersionUID): Ditto. * java/security/interfaces/DSAPublicKey.java(serialVersionUID): Ditto. From-SVN: r32464 --- libjava/java/security/interfaces/DSAPrivateKey.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libjava/java/security/interfaces/DSAPrivateKey.java') diff --git a/libjava/java/security/interfaces/DSAPrivateKey.java b/libjava/java/security/interfaces/DSAPrivateKey.java index 833ee3af5a7..a2cb583884a 100644 --- a/libjava/java/security/interfaces/DSAPrivateKey.java +++ b/libjava/java/security/interfaces/DSAPrivateKey.java @@ -21,7 +21,8 @@ import java.math.BigInteger; public interface DSAPrivateKey extends DSAKey, PrivateKey { - public static final long serialVersionUID; + // FIXME: need to set this at some point when serialization is implemented. + public static final long serialVersionUID = 0; public BigInteger getX(); } -- cgit v1.2.3