Code cleanup

This commit is contained in:
drdev
2014-08-04 21:30:27 +00:00
parent 9ede4f6b3c
commit 39e6ffc95f
3 changed files with 7 additions and 7 deletions

View File

@@ -59,8 +59,7 @@ public class RestartGameEffect extends SpellAbilityEffect {
GameAction action = game.getAction();
List<Player> gamePlayers = game.getRegisteredPlayers();
for( int i = 0; i < gamePlayers.size(); i++ ) {
for (int i = 0; i < gamePlayers.size(); i++) {
final Player player = gamePlayers.get(i);
if( player.hasLost()) continue;

View File

@@ -4,7 +4,6 @@ import forge.game.player.Player;
import forge.util.Lang;
public class GameEventPlayerLivesChanged extends GameEvent {
public final Player player;
public final int oldLives;
public final int newLives;