diff options
| author | Michael Koch <konqueror@gmx.de> | 2003-05-18 06:43:17 +0000 |
|---|---|---|
| committer | Michael Koch <konqueror@gmx.de> | 2003-05-18 06:43:17 +0000 |
| commit | 749980fc011e827a183b46047af3a681b10b08b5 (patch) | |
| tree | b36eedd37dd0050ac3e35388f6fb4b405b3f8f15 /java/security/Key.java | |
| parent | 047dd338364c4e20a889a294e8f31b93ff66d7fa (diff) | |
| download | classpath-749980fc011e827a183b46047af3a681b10b08b5.tar.gz | |
2003-05-18 Michael Koch <konqueror@gmx.de>
* java/security/Key.java
(Key): Fixed declaration of serialVersionUID.
* java/security/PrivateKey.java
(PrivateKey): Likewise.
* java/security/Provider.java
(Provider): Likewise.
* java/security/PublicKey.java
(PublicKey): Likewise.
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 195e50bb5..ee2be0375 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. */ - long serialVersionUID = 6603384152749567654L; + public static final long serialVersionUID = 6603384152749567654L; /** * This method returns the name of the algorithm for this key. This is a |
