This is an automated email from the ASF dual-hosted git repository.
kinow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-codec.git
The following commit(s) were added to refs/heads/master by this push:
new ac7e904 Fix javadoc (and Travis build)
new dd5e462 Merge pull request #18 from kinow/fix-travis-1
ac7e904 is described below
commit ac7e904531c4509ecb9158e4b31cce95ed938119
Author: Bruno P. Kinoshita <[email protected]>
AuthorDate: Sat Feb 16 19:44:27 2019 +1300
Fix javadoc (and Travis build)
---
src/main/java/org/apache/commons/codec/digest/Md5Crypt.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java
b/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java
index 6415936..fa5fba3 100644
--- a/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java
+++ b/src/main/java/org/apache/commons/codec/digest/Md5Crypt.java
@@ -85,9 +85,9 @@ public class Md5Crypt {
* </p>
*
* @param keyBytes plaintext string to hash.
- * @param random an arbitrary {@link Random} for the user's reason.
* @param random the instance of {@link Random} to use for generating the
salt. Consider using {@link SecureRandom}
* or {@link ThreadLocalRandom}.
+ * @return the hash value
* @throws IllegalArgumentException when a {@link
java.security.NoSuchAlgorithmException} is caught. *
* @see #apr1Crypt(byte[], String)
* @since 1.12