diff options
| author | Michael Koch <konqueror@gmx.de> | 2003-10-12 15:53:14 +0000 |
|---|---|---|
| committer | Michael Koch <konqueror@gmx.de> | 2003-10-12 15:53:14 +0000 |
| commit | b451effb6e2ba40338bdeb92c0d7ea9add5f9c77 (patch) | |
| tree | 94e030d2b070a128942762b7a6ca36dbeaf612f6 /java/security/Key.java | |
| parent | 9d4f719c9b9f7604c61f8651152bfdfe6683ae2b (diff) | |
| download | classpath-b451effb6e2ba40338bdeb92c0d7ea9add5f9c77.tar.gz | |
2003-10-12 Michael Koch <konqueror@gmx.de>
* java/security/Key.java,
java/security/PrivateKey.java,
java/security/PublicKey.java,
java/security/acl/Acl.java,
java/security/acl/AclEntry.java,
java/security/acl/Group.java,
java/security/acl/Owner.java,
java/security/acl/Permission.java,
java/security/cert/X509Extension.java,
java/security/interfaces/DSAKey.java,
java/security/interfaces/DSAKeyPairGenerator.java,
java/security/interfaces/DSAParams.java,
java/security/interfaces/DSAPrivateKey.java,
java/security/interfaces/DSAPublicKey.java,
java/security/interfaces/RSAKey.java,
java/security/interfaces/RSAPrivateCrtKey.java,
java/security/interfaces/RSAPrivateKey.java,
java/security/interfaces/RSAPublicKey.java:
Removed redundant modifiers.
Diffstat (limited to 'java/security/Key.java')
| -rw-r--r-- | java/security/Key.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/security/Key.java b/java/security/Key.java index ee2be0375..195e50bb5 100644 --- a/java/security/Key.java +++ b/java/security/Key.java @@ -64,7 +64,7 @@ public interface Key extends Serializable /** * The version identifier used for serialization. */ - public static final long serialVersionUID = 6603384152749567654L; + long serialVersionUID = 6603384152749567654L; /** * This method returns the name of the algorithm for this key. This is a |
