mirror of
https://github.com/apache/commons-lang.git
synced 2025-02-06 18:18:22 +00:00
Making the HashMaps final as per LANG-367
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@590552 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
127e6e338f
commit
72f88548f8
@ -107,11 +107,11 @@ public class FastDateFormat extends Format {
|
||||
|
||||
private static String cDefaultPattern;
|
||||
|
||||
private static Map cInstanceCache = new HashMap(7);
|
||||
private static Map cDateInstanceCache = new HashMap(7);
|
||||
private static Map cTimeInstanceCache = new HashMap(7);
|
||||
private static Map cDateTimeInstanceCache = new HashMap(7);
|
||||
private static Map cTimeZoneDisplayCache = new HashMap(7);
|
||||
private static final Map cInstanceCache = new HashMap(7);
|
||||
private static final Map cDateInstanceCache = new HashMap(7);
|
||||
private static final Map cTimeInstanceCache = new HashMap(7);
|
||||
private static final Map cDateTimeInstanceCache = new HashMap(7);
|
||||
private static final Map cTimeZoneDisplayCache = new HashMap(7);
|
||||
|
||||
/**
|
||||
* The pattern.
|
||||
|
Loading…
x
Reference in New Issue
Block a user