From 4ca75d9f7f681ffa04edce7ec5280f94cd656ec6 Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Tue, 22 Oct 2013 22:41:06 +0000 Subject: [PATCH] javadoc tag cleanup git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1534831 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/lang3/reflect/ConstructorUtils.java | 6 +++--- .../java/org/apache/commons/lang3/reflect/MethodUtils.java | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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 bfd07abbc..641c39b4c 100644 --- a/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java +++ b/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java @@ -67,7 +67,7 @@ public class ConstructorUtils { * * @param the type to be constructed * @param cls the class to be constructed, not {@code null} - * @param args the array of arguments, {@code null treated as empty + * @param args the array of arguments, {@code null} treated as empty * @return new instance of {@code cls}, not {@code null} * * @throws NullPointerException if {@code cls} is {@code null} @@ -127,8 +127,8 @@ public class ConstructorUtils { * * @param the type to be constructed * @param cls the class to be constructed, not {@code null} - * @param args the array of arguments, {@code null treated as empty - * @return new instance of {@code cls}, not {@code null + * @param args the array of arguments, {@code null} treated as empty + * @return new instance of {@code cls}, not {@code null} * * @throws NullPointerException if {@code cls} is {@code null} * @throws NoSuchMethodException if a matching constructor cannot be found diff --git a/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java b/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java index 57147254e..872fe4f9c 100644 --- a/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java +++ b/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java @@ -203,7 +203,7 @@ public class MethodUtils { * @param cls invoke static method on this class * @param methodName get method with this name * @param args use these arguments - treat {@code null} as empty array - * @param parameterTypes match these parameters - treat {@code null as empty array + * @param parameterTypes match these parameters - treat {@code null} as empty array * @return The value returned by the invoked method * * @throws NoSuchMethodException if there is no such accessible method