Fix JavaDoc problems

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1558512 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2014-01-15 18:56:57 +00:00
parent be963fc089
commit 3af7ba8e46
3 changed files with 3 additions and 7 deletions

View File

@ -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$

View File

@ -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 {

View File

@ -91,7 +91,6 @@ public class StopWatch {
* StopWatch is also started watch.
* </p>
* @param stopWatch
* @return boolean
* If the StopWatch is started.
*/
@ -104,7 +103,6 @@ public class StopWatch {
* considered as stopped.
* </p>
*
* @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.
* </p>
*
* @param stopWatch
* @return boolean
* If the StopWatch is suspended.
*/