aboutsummaryrefslogtreecommitdiff
path: root/libjava/javax
diff options
context:
space:
mode:
authorJeroen Frijters <jeroen@frijters.net>2005-02-22 18:58:53 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2005-02-22 18:58:53 +0000
commitb22dcb1f3071073b9521d72824eccad571c81613 (patch)
tree878d24f2bd1d297e4772cca4f727f6b91bc91c19 /libjava/javax
parentaf43b1adebde485322ecc3813a01b9e003412223 (diff)
downloadgcc-b22dcb1f3071073b9521d72824eccad571c81613.zip
gcc-b22dcb1f3071073b9521d72824eccad571c81613.tar.gz
gcc-b22dcb1f3071073b9521d72824eccad571c81613.tar.bz2
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. From-SVN: r95406
Diffstat (limited to 'libjava/javax')
-rw-r--r--libjava/javax/crypto/SecretKey.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/libjava/javax/crypto/SecretKey.java b/libjava/javax/crypto/SecretKey.java
index ce7057e..3865db4 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;
}