diff options
Diffstat (limited to 'libjava/java/security/interfaces')
-rw-r--r-- | libjava/java/security/interfaces/DSAPrivateKey.java | 2 | ||||
-rw-r--r-- | libjava/java/security/interfaces/DSAPublicKey.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libjava/java/security/interfaces/DSAPrivateKey.java b/libjava/java/security/interfaces/DSAPrivateKey.java index a2cb583884a..c0efe21b490 100644 --- a/libjava/java/security/interfaces/DSAPrivateKey.java +++ b/libjava/java/security/interfaces/DSAPrivateKey.java @@ -22,7 +22,7 @@ import java.math.BigInteger; public interface DSAPrivateKey extends DSAKey, PrivateKey { // FIXME: need to set this at some point when serialization is implemented. - public static final long serialVersionUID = 0; + // public static final long serialVersionUID = 0L; public BigInteger getX(); } diff --git a/libjava/java/security/interfaces/DSAPublicKey.java b/libjava/java/security/interfaces/DSAPublicKey.java index 7cab0708263..43eedaf1e84 100644 --- a/libjava/java/security/interfaces/DSAPublicKey.java +++ b/libjava/java/security/interfaces/DSAPublicKey.java @@ -22,7 +22,7 @@ import java.math.BigInteger; public interface DSAPublicKey extends DSAKey, PublicKey { // FIXME: need to set this at some point when serialization is implemented. - public static final long serialVersionUID = 0; + // public static final long serialVersionUID = 0L; public BigInteger getY(); } |