This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git
The following commit(s) were added to refs/heads/master by this push:
new 79578219 Use Javadoc @link
79578219 is described below
commit 7957821909d1c6a394373b25889420a0ffb866f3
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Jul 29 16:35:09 2024 -0400
Use Javadoc @link
---
src/main/java/org/apache/commons/crypto/utils/Utils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/main/java/org/apache/commons/crypto/utils/Utils.java
b/src/main/java/org/apache/commons/crypto/utils/Utils.java
index 69b963e0..e1caba11 100644
--- a/src/main/java/org/apache/commons/crypto/utils/Utils.java
+++ b/src/main/java/org/apache/commons/crypto/utils/Utils.java
@@ -103,7 +103,7 @@ public final class Utils {
*
* @param expression a boolean expression.
* @param errorMessage the exception message to use if the check fails;
will
- * be converted to a string using
<code>String.valueOf(Object)</code>.
+ * be converted to a string using {@link String#valueOf(Object)}.
* @throws IllegalArgumentException if expression is {@code false}.
*/
public static void checkArgument(final boolean expression, final Object
errorMessage) {