diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-22 18:58:53 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-22 18:58:53 +0000 |
commit | 26537b78028c2385162b1b8cdee0aea44cdbb6bc (patch) | |
tree | 878d24f2bd1d297e4772cca4f727f6b91bc91c19 /libjava/javax | |
parent | d4ab722067ffb895718a02bbea9ad80b6a0a049e (diff) | |
download | ppe42-gcc-26537b78028c2385162b1b8cdee0aea44cdbb6bc.tar.gz ppe42-gcc-26537b78028c2385162b1b8cdee0aea44cdbb6bc.zip |
2005-02-22 Jeroen Frijters <jeroen@frijters.net>
* java/io/Externalizable.java,
java/io/Serializable.java
(serialVersionUID): Removed.
* java/rmi/server/RemoteObject.java,
java/rmi/server/UID.java
(serialVersionUID): Made private.
* java/rmi/server/RemoteRef.java,
java/rmi/server/ServerRef.java
(serialVersionUID): Set proper value.
* java/security/interfaces/DSAPrivateKey.java,
java/security/interfaces/DSAPublicKey.java,
java/security/interfaces/RSAMultiPrimePrivateCrtKey.java,
java/security/interfaces/RSAPrivateCrtKey.java,
java/security/interfaces/RSAPrivateKey.java,
java/security/interfaces/RSAPublicKey.java,
javax/crypto/SecretKey.java
(serialVersionUID): Added.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95406 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/javax')
-rw-r--r-- | libjava/javax/crypto/SecretKey.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libjava/javax/crypto/SecretKey.java b/libjava/javax/crypto/SecretKey.java index ce7057e7092..3865db4a6d1 100644 --- a/libjava/javax/crypto/SecretKey.java +++ b/libjava/javax/crypto/SecretKey.java @@ -61,4 +61,5 @@ import java.security.Key; */ public interface SecretKey extends Key { + long serialVersionUID = -4795878709595146952L; } |