Author: britter Date: Fri Oct 18 14:53:11 2013 New Revision: 1533474 URL: http://svn.apache.org/r1533474 Log: Correct JavaDoc for generic type parameter
Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java?rev=1533474&r1=1533473&r2=1533474&view=diff ============================================================================== --- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java (original) +++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java Fri Oct 18 14:53:11 2013 @@ -55,7 +55,7 @@ public class TypeUtils { private Type[] upperBounds; private Type[] lowerBounds; - + public WildcardTypeBuilder withUpperBounds(Type... bounds) { this.upperBounds = bounds; return this; @@ -1547,7 +1547,7 @@ public class TypeUtils { /** * Wrap the specified {@link Type} in a {@link Typed} wrapper. * - * @param T inferred generic type + * @param <T> inferred generic type * @param type to wrap * @return Typed<T> */ @@ -1563,7 +1563,7 @@ public class TypeUtils { /** * Wrap the specified {@link Class} in a {@link Typed} wrapper. * - * @param T generic type + * @param <T> generic type * @param type to wrap * @return Typed<T> */