diff options
author | Warren Levy <warrenl@cygnus.com> | 2000-03-10 05:10:40 +0000 |
---|---|---|
committer | Warren Levy <warrenl@gcc.gnu.org> | 2000-03-10 05:10:40 +0000 |
commit | ea7f51a4af057b3a231b25fc037417373a5421cd (patch) | |
tree | fabdd4a933c55c96f8d7cf7f479ef4ad1aca2773 /libjava/java/security | |
parent | 1858863bd5e982876880ddf0a53d95bf71d869e8 (diff) | |
download | gcc-ea7f51a4af057b3a231b25fc037417373a5421cd.zip gcc-ea7f51a4af057b3a231b25fc037417373a5421cd.tar.gz gcc-ea7f51a4af057b3a231b25fc037417373a5421cd.tar.bz2 |
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
Diffstat (limited to 'libjava/java/security')
-rw-r--r-- | libjava/java/security/Key.java | 2 | ||||
-rw-r--r-- | libjava/java/security/interfaces/DSAPrivateKey.java | 3 | ||||
-rw-r--r-- | libjava/java/security/interfaces/DSAPublicKey.java | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/libjava/java/security/Key.java b/libjava/java/security/Key.java index 4bf32c5..c8598db 100644 --- a/libjava/java/security/Key.java +++ b/libjava/java/security/Key.java @@ -21,7 +21,7 @@ import java.io.Serializable; public interface Key extends Serializable { // FIXME: need to set this at some point when serialization is implemented. - public static final long serialVersionUID; + public static final long serialVersionUID = 0; public String getAlgorithm(); public String getFormat(); 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(); } |