From 3af7ba8e46747bf51e6ea83dc99e8ca3761ec996 Mon Sep 17 00:00:00 2001 From: Benedikt Ritter Date: Wed, 15 Jan 2014 18:56:57 +0000 Subject: [PATCH] Fix JavaDoc problems git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1558512 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/commons/lang3/reflect/MemberUtils.java | 5 ++--- src/main/java/org/apache/commons/lang3/time/DateUtils.java | 2 +- src/main/java/org/apache/commons/lang3/time/StopWatch.java | 3 --- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/reflect/MemberUtils.java b/src/main/java/org/apache/commons/lang3/reflect/MemberUtils.java index aa5f0411a..1e2fce646 100644 --- a/src/main/java/org/apache/commons/lang3/reflect/MemberUtils.java +++ b/src/main/java/org/apache/commons/lang3/reflect/MemberUtils.java @@ -23,9 +23,8 @@ import java.lang.reflect.Modifier; import org.apache.commons.lang3.ClassUtils; /** - * Contains common code for working with {@link Method}s/{@link Constructor}s, extracted and - * refactored from {@link MethodUtils} when it was imported from Commons - * BeanUtils. + * Contains common code for working with {@link java.lang.reflect.Method Methods}/{@link java.lang.reflect.Constructor Constructor}, + * extracted and refactored from {@link MethodUtils} when it was imported from Commons BeanUtils. * * @since 2.5 * @version $Id$ diff --git a/src/main/java/org/apache/commons/lang3/time/DateUtils.java b/src/main/java/org/apache/commons/lang3/time/DateUtils.java index b16af53d4..2da766fd6 100644 --- a/src/main/java/org/apache/commons/lang3/time/DateUtils.java +++ b/src/main/java/org/apache/commons/lang3/time/DateUtils.java @@ -347,7 +347,7 @@ public class DateUtils { * @return the parsed date * @throws IllegalArgumentException if the date string or pattern array is null * @throws ParseException if none of the date patterns were suitable - * @see java.util.Calender#isLenient() + * @see java.util.Calendar#isLenient() */ private static Date parseDateWithLeniency( final String str, final Locale locale, final String[] parsePatterns, final boolean lenient) throws ParseException { diff --git a/src/main/java/org/apache/commons/lang3/time/StopWatch.java b/src/main/java/org/apache/commons/lang3/time/StopWatch.java index e021dc74b..64070830e 100644 --- a/src/main/java/org/apache/commons/lang3/time/StopWatch.java +++ b/src/main/java/org/apache/commons/lang3/time/StopWatch.java @@ -91,7 +91,6 @@ public class StopWatch { * StopWatch is also started watch. *

- * @param stopWatch * @return boolean * If the StopWatch is started. */ @@ -104,7 +103,6 @@ public class StopWatch { * considered as stopped. *

* - * @param stopWatch * @return boolean * If the StopWatch is stopped. */ @@ -115,7 +113,6 @@ public class StopWatch { * This method is used to find out whether the StopWatch is suspended. *

* - * @param stopWatch * @return boolean * If the StopWatch is suspended. */