Constructor param can be final
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1572846 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
513347342a
commit
057249fc70
|
@ -91,7 +91,7 @@ public class FastDateParser implements DateParser, Serializable {
|
|||
* @param locale non-null locale
|
||||
* @param centuryStart The start of the century for 2 digit year parsing
|
||||
*/
|
||||
protected FastDateParser(final String pattern, final TimeZone timeZone, final Locale locale, Date centuryStart) {
|
||||
protected FastDateParser(final String pattern, final TimeZone timeZone, final Locale locale, final Date centuryStart) {
|
||||
this.pattern = pattern;
|
||||
this.timeZone = timeZone;
|
||||
this.locale = locale;
|
||||
|
|
Loading…
Reference in New Issue