diff options
author | Warren Levy <warrenl@cygnus.com> | 2000-07-27 23:57:07 +0000 |
---|---|---|
committer | Warren Levy <warrenl@gcc.gnu.org> | 2000-07-27 23:57:07 +0000 |
commit | 7db51521a018eaa0751e5948091cfb29c841ca91 (patch) | |
tree | ff39f131cca0a0da7843ec7d8797e9f7c82bd82d /libjava/java/security/interfaces/DSAPrivateKey.java | |
parent | b2244c65f518cfb4b6a5385ddfe45bc3ce2cf9c0 (diff) | |
download | gcc-7db51521a018eaa0751e5948091cfb29c841ca91.zip gcc-7db51521a018eaa0751e5948091cfb29c841ca91.tar.gz gcc-7db51521a018eaa0751e5948091cfb29c841ca91.tar.bz2 |
mauve-libgcj: Activated serialization tests.
* mauve-libgcj: Activated serialization tests.
* gcj/field.h (getModifiers): Mask off unknown flags.
* gnu/java/security/provider/SHA.java (munch): Reset buffer to 0 so
spurious bits don't cause discrepancies.
* java/io/ObjectOutputStream.java: Fixed typo in comment.
* java/io/ObjectStreamClass.java: Fixed typos in comments.
(lookup): Applied patch from Brian Jones <cbj@gnu.org> to optimize.
(hasClassInitializer): Call getDeclaredMethod instead of getMethod.
* java/lang/Throwable.java (serialVersionUID): New field.
* java/lang/reflect/Modifier.java (ALL_FLAGS): Preserve STRICT if used.
* java/lang/reflect/natConstructor.cc (getModifiers): Mask off
unknown flags.
* java/lang/reflect/natMethod.cc: Ditto.
* java/security/Key.java (serialVersionUID): Removed field for now.
* java/security/interfaces/DSAPrivateKey.java (serialVersionUID): Ditto.
* java/security/interfaces/DSAPublicKey.java (serialVersionUID): Ditto.
Serialization mods.
From-SVN: r35302
Diffstat (limited to 'libjava/java/security/interfaces/DSAPrivateKey.java')
-rw-r--r-- | libjava/java/security/interfaces/DSAPrivateKey.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/security/interfaces/DSAPrivateKey.java b/libjava/java/security/interfaces/DSAPrivateKey.java index a2cb583..c0efe21b4 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(); } |