- CheckStyle.

This commit is contained in:
Chris
2012-01-23 14:19:56 +00:00
parent 90959ccc4c
commit 3b0065e8b2
7 changed files with 18 additions and 18 deletions

View File

@@ -1490,7 +1490,7 @@ public class MagicStack extends MyObservable {
}
public final boolean isResolving(Card c) {
if(!this.getResolving() || this.curResolvingCard == null) {
if (!this.getResolving() || this.curResolvingCard == null) {
return false;
}

View File

@@ -341,7 +341,7 @@ public class SpellPermanent extends Spell {
*/
public static boolean checkETBEffects(final Card card, final SpellAbility sa, final String api) {
if(card.isCreature() && AllZoneUtil.isCardInPlay("Torpor Orb")) {
if (card.isCreature() && AllZoneUtil.isCardInPlay("Torpor Orb")) {
return true;
}

View File

@@ -61,9 +61,9 @@ public class StaticAbilityCantBeCast {
return false;
}
if(params.containsKey("Origin")) {
if (params.containsKey("Origin")) {
Zone src = Zone.smartValueOf(params.get("Origin"));
if(src != AllZone.getZoneOf(card).getZoneType()) {
if (src != AllZone.getZoneOf(card).getZoneType()) {
return false;
}
}