- CheckStyle.

This commit is contained in:
Chris
2012-11-13 13:25:22 +00:00
parent e93cc37cdd
commit 0abee2aeae

View File

@@ -10,8 +10,8 @@ import forge.card.spellability.SpellAbility;
import forge.game.phase.PhaseType; import forge.game.phase.PhaseType;
import forge.game.player.Player; import forge.game.player.Player;
public class DamagePreventAllAi extends SpellAiLogic { public class DamagePreventAllAi extends SpellAiLogic {
/* (non-Javadoc) /* (non-Javadoc)
* @see forge.card.abilityfactory.SpellAiLogic#chkAIDrawback(java.util.Map, forge.card.spellability.SpellAbility, forge.game.player.Player) * @see forge.card.abilityfactory.SpellAiLogic#chkAIDrawback(java.util.Map, forge.card.spellability.SpellAbility, forge.game.player.Player)
*/ */
@@ -19,7 +19,7 @@ public class DamagePreventAllAi extends SpellAiLogic {
public boolean chkAIDrawback(SpellAbility sa, Player aiPlayer) { public boolean chkAIDrawback(SpellAbility sa, Player aiPlayer) {
return true; return true;
} }
/* (non-Javadoc) /* (non-Javadoc)
* @see forge.card.abilityfactory.SpellAiLogic#canPlayAI(forge.game.player.Player, java.util.Map, forge.card.spellability.SpellAbility) * @see forge.card.abilityfactory.SpellAiLogic#canPlayAI(forge.game.player.Player, java.util.Map, forge.card.spellability.SpellAbility)
*/ */
@@ -65,4 +65,4 @@ public class DamagePreventAllAi extends SpellAiLogic {
return chance; return chance;
} }
} }