javadoc tag cleanup

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1534831 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Matthew Jason Benson 2013-10-22 22:41:06 +00:00
parent fcc00998ec
commit 4ca75d9f7f
2 changed files with 4 additions and 4 deletions

View File

@ -67,7 +67,7 @@ public class ConstructorUtils {
* *
* @param <T> the type to be constructed * @param <T> the type to be constructed
* @param cls the class to be constructed, not {@code null} * @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} * @return new instance of {@code cls}, not {@code null}
* *
* @throws NullPointerException if {@code cls} is {@code null} * @throws NullPointerException if {@code cls} is {@code null}
@ -127,8 +127,8 @@ public class ConstructorUtils {
* *
* @param <T> the type to be constructed * @param <T> the type to be constructed
* @param cls the class to be constructed, not {@code null} * @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 * @return new instance of {@code cls}, not {@code null}
* *
* @throws NullPointerException if {@code cls} is {@code null} * @throws NullPointerException if {@code cls} is {@code null}
* @throws NoSuchMethodException if a matching constructor cannot be found * @throws NoSuchMethodException if a matching constructor cannot be found

View File

@ -203,7 +203,7 @@ public class MethodUtils {
* @param cls invoke static method on this class * @param cls invoke static method on this class
* @param methodName get method with this name * @param methodName get method with this name
* @param args use these arguments - treat {@code null} as empty array * @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 * @return The value returned by the invoked method
* *
* @throws NoSuchMethodException if there is no such accessible method * @throws NoSuchMethodException if there is no such accessible method