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
This commit is contained in:
Thomas Neidhart 2013-02-20 16:51:35 +00:00
parent 295ab041dc
commit 9e4c7ad562
1 changed files with 3 additions and 3 deletions

View File

@ -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 <code>StringBuilder</code> 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<Locale, Strategy> 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;