Skip to content

Commit b5cb40c

Browse files
committed
Javadoc
1 parent a22cfcd commit b5cb40c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/main/java/org/apache/commons/lang3/time/FastDateFormat.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ public static FastDateFormat getInstance(final String pattern) {
247247
}
248248

249249
/**
250-
* Gets a formatter instance using the specified pattern and locale.
250+
* Gets a formatter instance using the specified pattern and locale using the default time zone.
251251
*
252252
* @param pattern {@link java.text.SimpleDateFormat} compatible pattern.
253253
* @param locale optional locale, overrides system locale.
@@ -352,14 +352,13 @@ protected FastDateFormat(final String pattern, final TimeZone timeZone, final Lo
352352
this(pattern, timeZone, locale, null);
353353
}
354354

355-
// Constructor
356355
/**
357356
* Constructs a new FastDateFormat.
358357
*
359358
* @param pattern {@link java.text.SimpleDateFormat} compatible pattern.
360359
* @param timeZone non-null time zone to use.
361360
* @param locale non-null locale to use.
362-
* @param centuryStart The start of the 100-year period to useas the "default century" for 2 digit year parsing. If centuryStart is null, defaults to now -
361+
* @param centuryStart The start of the 100-year period to use as the "default century" for 2 digit year parsing. If centuryStart is null, defaults to now -
363362
* 80 years.
364363
* @throws NullPointerException if pattern, timeZone, or locale is null.
365364
*/

0 commit comments

Comments
 (0)