Make gameViews final

This commit is contained in:
drdev
2014-09-26 19:15:49 +00:00
parent f833a49c7f
commit b4bcee6bc6

View File

@@ -71,7 +71,7 @@ import forge.view.WatchLocalGame;
public class MatchUtil { public class MatchUtil {
private static IMatchController controller; private static IMatchController controller;
private static Game game; private static Game game;
private static List<LocalGameView> gameViews = new ArrayList<LocalGameView>(); private static final List<LocalGameView> gameViews = new ArrayList<LocalGameView>();
/** Cache of players. */ /** Cache of players. */
public static final Cache<Player, PlayerView> players = new Cache<>(); public static final Cache<Player, PlayerView> players = new Cache<>();