From 7c73e5948207cf179ce057d17eb74e7100554173 Mon Sep 17 00:00:00 2001 From: aum <aum> Date: Thu, 7 Apr 2005 04:26:55 +0000 Subject: [PATCH] Fixed more javadoc errors --- core/java/src/net/i2p/crypto/KeyGenerator.java | 4 ++-- core/java/src/net/i2p/data/PrivateKey.java | 3 +-- core/java/src/net/i2p/data/PublicKey.java | 2 +- core/java/src/net/i2p/data/SigningPrivateKey.java | 2 +- core/java/src/net/i2p/data/SigningPublicKey.java | 2 +- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/core/java/src/net/i2p/crypto/KeyGenerator.java b/core/java/src/net/i2p/crypto/KeyGenerator.java index d480cc5a12..54f47ca235 100644 --- a/core/java/src/net/i2p/crypto/KeyGenerator.java +++ b/core/java/src/net/i2p/crypto/KeyGenerator.java @@ -77,7 +77,7 @@ public class KeyGenerator { } /** Convert a PrivateKey to its corresponding PublicKey - * @param a PrivateKey object + * @param priv PrivateKey object * @return the corresponding PublicKey object */ public static PublicKey getPublicKey(PrivateKey priv) { @@ -114,7 +114,7 @@ public class KeyGenerator { } /** Convert a SigningPrivateKey to a SigningPublicKey - * @param a SigningPrivateKey object + * @param priv a SigningPrivateKey object * @return a SigningPublicKey object */ public static SigningPublicKey getSigningPublicKey(SigningPrivateKey priv) { diff --git a/core/java/src/net/i2p/data/PrivateKey.java b/core/java/src/net/i2p/data/PrivateKey.java index d22a538bf9..fd3e2e2078 100644 --- a/core/java/src/net/i2p/data/PrivateKey.java +++ b/core/java/src/net/i2p/data/PrivateKey.java @@ -34,9 +34,8 @@ public class PrivateKey extends DataStructureImpl { } /** constructs from base64 - * @param a string of base64 data (the output of .toBase64() called + * @param base64Data a string of base64 data (the output of .toBase64() called * on a prior instance of PrivateKey - * @author aum */ public PrivateKey(String base64Data) throws DataFormatException { this(); diff --git a/core/java/src/net/i2p/data/PublicKey.java b/core/java/src/net/i2p/data/PublicKey.java index 63270ff2b8..aaf5a65ae3 100644 --- a/core/java/src/net/i2p/data/PublicKey.java +++ b/core/java/src/net/i2p/data/PublicKey.java @@ -33,7 +33,7 @@ public class PublicKey extends DataStructureImpl { } /** constructs from base64 - * @param a string of base64 data (the output of .toBase64() called + * @param base64Data a string of base64 data (the output of .toBase64() called * on a prior instance of PublicKey */ public PublicKey(String base64Data) throws DataFormatException { diff --git a/core/java/src/net/i2p/data/SigningPrivateKey.java b/core/java/src/net/i2p/data/SigningPrivateKey.java index 7c6d9b0632..9fd65e37ad 100644 --- a/core/java/src/net/i2p/data/SigningPrivateKey.java +++ b/core/java/src/net/i2p/data/SigningPrivateKey.java @@ -34,7 +34,7 @@ public class SigningPrivateKey extends DataStructureImpl { public SigningPrivateKey(byte data[]) { setData(data); } /** constructs from base64 - * @param a string of base64 data (the output of .toBase64() called + * @param base64Data a string of base64 data (the output of .toBase64() called * on a prior instance of SigningPrivateKey */ public SigningPrivateKey(String base64Data) throws DataFormatException { diff --git a/core/java/src/net/i2p/data/SigningPublicKey.java b/core/java/src/net/i2p/data/SigningPublicKey.java index cd7810b6d1..b938eb06ee 100644 --- a/core/java/src/net/i2p/data/SigningPublicKey.java +++ b/core/java/src/net/i2p/data/SigningPublicKey.java @@ -33,7 +33,7 @@ public class SigningPublicKey extends DataStructureImpl { public SigningPublicKey(byte data[]) { setData(data); } /** constructs from base64 - * @param a string of base64 data (the output of .toBase64() called + * @param base64Data a string of base64 data (the output of .toBase64() called * on a prior instance of SigningPublicKey */ public SigningPublicKey(String base64Data) throws DataFormatException { -- GitLab