eclipse plugin: Add the final qualifier to some...
...cache instances
This commit is contained in:
parent
926087291d
commit
7851271c91
2 changed files with 2 additions and 2 deletions
|
@ -26,7 +26,7 @@ public class Preferences extends AbstractPreferenceInitializer
|
|||
/**
|
||||
* A map for storing the paths for the current session
|
||||
*/
|
||||
protected static Map< String, Paths > paths_ =
|
||||
protected final static Map< String, Paths > paths_ =
|
||||
new HashMap< String, Paths > ();
|
||||
|
||||
@Override
|
||||
|
|
|
@ -27,7 +27,7 @@ import org.wesnoth.utils.StringUtils;
|
|||
*/
|
||||
public class SchemaParser
|
||||
{
|
||||
protected static Map< String, SchemaParser > parsers_ =
|
||||
protected final static Map< String, SchemaParser > parsers_ =
|
||||
new HashMap<String, SchemaParser>();
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Reference in a new issue