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