You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2013/10/23 00:41:07 UTC

svn commit: r1534831 - in /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect: ConstructorUtils.java MethodUtils.java

Author: mbenson
Date: Tue Oct 22 22:41:06 2013
New Revision: 1534831

URL: http://svn.apache.org/r1534831
Log:
javadoc tag cleanup

Modified:
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java

Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java?rev=1534831&r1=1534830&r2=1534831&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java (original)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/ConstructorUtils.java Tue Oct 22 22:41:06 2013
@@ -67,7 +67,7 @@ public class ConstructorUtils {
      *
      * @param <T> 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 <T> 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

Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java?rev=1534831&r1=1534830&r2=1534831&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java (original)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/MethodUtils.java Tue Oct 22 22:41:06 2013
@@ -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