diff options
Diffstat (limited to 'libjava/java/security/interfaces')
-rw-r--r-- | libjava/java/security/interfaces/DSAPrivateKey.java | 3 | ||||
-rw-r--r-- | libjava/java/security/interfaces/DSAPublicKey.java | 3 |
2 files changed, 4 insertions, 2 deletions
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(); } |