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 ++- libjava/java/security/interfaces/DSAPublicKey.java | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'libjava/java/security/interfaces') diff --git a/libjava/java/security/interfaces/DSAPrivateKey.java b/libjava/java/security/interfaces/DSAPrivateKey.java index 833ee3a..a2cb583 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(); } diff --git a/libjava/java/security/interfaces/DSAPublicKey.java b/libjava/java/security/interfaces/DSAPublicKey.java index 48949de..7cab070 100644 --- a/libjava/java/security/interfaces/DSAPublicKey.java +++ b/libjava/java/security/interfaces/DSAPublicKey.java @@ -21,7 +21,8 @@ import java.math.BigInteger; public interface DSAPublicKey extends DSAKey, PublicKey { - 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 getY(); } -- cgit v1.1