From 9e4c7ad56254852390444f050bed37bf87f17e85 Mon Sep 17 00:00:00 2001 From: Thomas Neidhart Date: Wed, 20 Feb 2013 16:51:35 +0000 Subject: [PATCH] Remove wrong param tags, complete javadoc. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1448290 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/commons/lang3/time/FastDateParser.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/time/FastDateParser.java b/src/main/java/org/apache/commons/lang3/time/FastDateParser.java index e77d5a4c0..8fa03289b 100644 --- a/src/main/java/org/apache/commons/lang3/time/FastDateParser.java +++ b/src/main/java/org/apache/commons/lang3/time/FastDateParser.java @@ -405,7 +405,6 @@ void setCalendar(final FastDateParser parser, final Calendar cal, final String v * which will accept this field * @param parser The parser calling this strategy * @param regex The StringBuilder to append to - * @param Calendar The calendar this strategy must parse * @return true, if this field will set the calendar; * false, if this field is a constant value */ @@ -492,7 +491,6 @@ private static ConcurrentMap getCache(final int field) { /** * Construct a Strategy that parses a Text field - * @param locale The Locale of the TimeZone to parse * @param field The Calendar field * @param definingCalendar The calendar to obtain the short and long values * @return a TextStrategy for the field and Locale @@ -557,7 +555,9 @@ private static class TextStrategy extends Strategy { /** * Construct a Strategy that parses a Text field - * @param field The Calendar field + * @param field The Calendar field + * @param definingCalendar The Calendar to use + * @param locale The Locale to use */ TextStrategy(final int field, final Calendar definingCalendar, final Locale locale) { this.field= field;