Skip to content

Commit 3ad1c4c

Browse files
committed
Types in java.lang are always in scope
1 parent d0b8044 commit 3ad1c4c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/org/apache/commons/beanutils/ConstructorUtils.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ private static <T> Constructor<T> getMatchingAccessibleConstructor(
213213
* @throws IllegalAccessException If an error occurs accessing the constructor
214214
* @throws InvocationTargetException If an error occurs invoking the constructor
215215
* @throws InstantiationException If an error occurs instantiating the class
216-
* @see #invokeConstructor(java.lang.Class, java.lang.Object[], java.lang.Class[])
216+
* @see #invokeConstructor(Class, Object[], Class[])
217217
*/
218218
public static <T> T invokeConstructor(final Class<T> klass, final Object arg)
219219
throws
@@ -241,7 +241,7 @@ public static <T> T invokeConstructor(final Class<T> klass, final Object arg)
241241
* @throws IllegalAccessException If an error occurs accessing the constructor
242242
* @throws InvocationTargetException If an error occurs invoking the constructor
243243
* @throws InstantiationException If an error occurs instantiating the class
244-
* @see #invokeConstructor(java.lang.Class, java.lang.Object[], java.lang.Class[])
244+
* @see #invokeConstructor(Class, Object[], Class[])
245245
*/
246246
public static <T> T invokeConstructor(final Class<T> klass, Object[] args)
247247
throws
@@ -319,7 +319,7 @@ public static <T> T invokeConstructor(
319319
* @throws IllegalAccessException If an error occurs accessing the constructor
320320
* @throws InvocationTargetException If an error occurs invoking the constructor
321321
* @throws InstantiationException If an error occurs instantiating the class
322-
* @see #invokeExactConstructor(java.lang.Class, java.lang.Object[], java.lang.Class[])
322+
* @see #invokeExactConstructor(Class, Object[], Class[])
323323
*/
324324
public static <T> T invokeExactConstructor(final Class<T> klass, final Object arg)
325325
throws
@@ -347,7 +347,7 @@ public static <T> T invokeExactConstructor(final Class<T> klass, final Object ar
347347
* @throws IllegalAccessException If an error occurs accessing the constructor
348348
* @throws InvocationTargetException If an error occurs invoking the constructor
349349
* @throws InstantiationException If an error occurs instantiating the class
350-
* @see #invokeExactConstructor(java.lang.Class, java.lang.Object[], java.lang.Class[])
350+
* @see #invokeExactConstructor(Class, Object[], Class[])
351351
*/
352352
public static <T> T invokeExactConstructor(final Class<T> klass, Object[] args)
353353
throws

0 commit comments

Comments
 (0)