Navigation Menu

Skip to content

Commit

Permalink
Final modifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
lrozenblyum committed Dec 31, 2012
1 parent 8643051 commit bbeed8c
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -23,9 +23,9 @@ class WinboardCommanderImpl implements WinboardCommander {


//we could use adapters //we could use adapters
//but now I directly force the listeners to extend the interface //but now I directly force the listeners to extend the interface
private Map<String, NoParametersListener> listenersWithoutParams = new HashMap<String, NoParametersListener>(); private final Map<String, NoParametersListener> listenersWithoutParams = new HashMap<String, NoParametersListener>();
private Map<String, StringParameterListener> stringParameterListeners = new HashMap<String, StringParameterListener>(); private final Map<String, StringParameterListener> stringParameterListeners = new HashMap<String, StringParameterListener>();
private Map<String, IntParameterListener> intParameterListeners = new HashMap<String, IntParameterListener>(); private final Map<String, IntParameterListener> intParameterListeners = new HashMap<String, IntParameterListener>();


/** /**
* Create the commander, with communicator injected * Create the commander, with communicator injected
Expand Down

0 comments on commit bbeed8c

Please sign in to comment.