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-lang.git
The following commit(s) were added to refs/heads/master by this push:
new 83dd1284e Javadoc @see tags do not need to use a FQCN for classes in
java.lang
83dd1284e is described below
commit 83dd1284e4af9e6b1a7a82ce5a095c8185309a1c
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Aug 29 07:18:26 2022 -0400
Javadoc @see tags do not need to use a FQCN for classes in java.lang
---
src/main/java/org/apache/commons/lang3/Validate.java | 4 ++--
src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/java/org/apache/commons/lang3/Validate.java
b/src/main/java/org/apache/commons/lang3/Validate.java
index 7e406379d..70b294bff 100644
--- a/src/main/java/org/apache/commons/lang3/Validate.java
+++ b/src/main/java/org/apache/commons/lang3/Validate.java
@@ -837,7 +837,7 @@ public class Validate {
*
* @param value the value to validate
* @throws IllegalArgumentException if the value is not a number
- * @see #notNaN(double, java.lang.String, Object...)
+ * @see #notNaN(double, String, Object...)
*
* @since 3.5
*/
@@ -875,7 +875,7 @@ public class Validate {
*
* @param value the value to validate
* @throws IllegalArgumentException if the value is infinite or
Not-a-Number (NaN)
- * @see #finite(double, java.lang.String, Object...)
+ * @see #finite(double, String, Object...)
*
* @since 3.5
*/
diff --git
a/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java
b/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java
index 9d6c90ae1..6529d8d4d 100644
--- a/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java
+++ b/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java
@@ -73,7 +73,7 @@ public class ConstructorUtils {
* @throws IllegalAccessException if invocation is not permitted by
security
* @throws InvocationTargetException if an error occurs on invocation
* @throws InstantiationException if an error occurs on instantiation
- * @see #invokeConstructor(java.lang.Class, java.lang.Object[], Class[])
+ * @see #invokeConstructor(Class, Object[], Class[])
*/
public static <T> T invokeConstructor(final Class<T> cls, Object... args)
throws NoSuchMethodException, IllegalAccessException,
InvocationTargetException,
@@ -136,7 +136,7 @@ public class ConstructorUtils {
* @throws IllegalAccessException if invocation is not permitted by
security
* @throws InvocationTargetException if an error occurs on invocation
* @throws InstantiationException if an error occurs on instantiation
- * @see #invokeExactConstructor(java.lang.Class, java.lang.Object[],
Class[])
+ * @see #invokeExactConstructor(Class, Object[], Class[])
*/
public static <T> T invokeExactConstructor(final Class<T> cls, Object...
args)
throws NoSuchMethodException, IllegalAccessException,
InvocationTargetException,