eclipse plugin: Add the final qualifier to some...

...cache instances
This commit is contained in:
Timotei Dolean 2011-07-07 21:03:44 +00:00
parent 926087291d
commit 7851271c91
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -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>();
/**