Author: britter Date: Tue Oct 22 20:00:35 2013 New Revision: 1534760 URL: http://svn.apache.org/r1534760 Log: Fix javadoc param tags
Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/NotImplementedException.java Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/NotImplementedException.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/NotImplementedException.java?rev=1534760&r1=1534759&r2=1534760&view=diff ============================================================================== --- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/NotImplementedException.java (original) +++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/NotImplementedException.java Tue Oct 22 20:00:35 2013 @@ -83,7 +83,7 @@ public class NotImplementedException ext * Constructs a NotImplementedException. * * @param message description of the exception - * @param String code indicating a resource for more information regarding the lack of implementation + * @param code code indicating a resource for more information regarding the lack of implementation * @since 3.2 */ public NotImplementedException(final String message, final String code) { @@ -95,7 +95,7 @@ public class NotImplementedException ext * Constructs a NotImplementedException. * * @param cause cause of the exception - * @param String code indicating a resource for more information regarding the lack of implementation + * @param code code indicating a resource for more information regarding the lack of implementation * @since 3.2 */ public NotImplementedException(final Throwable cause, final String code) { @@ -108,7 +108,7 @@ public class NotImplementedException ext * * @param message description of the exception * @param cause cause of the exception - * @param String code indicating a resource for more information regarding the lack of implementation + * @param code code indicating a resource for more information regarding the lack of implementation * @since 3.2 */ public NotImplementedException(final String message, final Throwable cause, final String code) {