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:
Benedikt Ritter 2014-02-28 07:45:37 +00:00
parent 513347342a
commit 057249fc70
1 changed files with 1 additions and 1 deletions

View File

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