[refactor] Extends Action enum in mediator pattern.

This commit is contained in:
ruslanpa
2015-02-10 09:48:22 +02:00
parent 04992483a1
commit 8980b3958c
3 changed files with 14 additions and 21 deletions
@@ -10,7 +10,7 @@ import java.util.List;
*/
public class PartyImpl implements Party {
private List<PartyMember> members;
private final List<PartyMember> members;
public PartyImpl() {
members = new ArrayList<>();