mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
Fix more double semicolons in java code
This commit is contained in:
parent
38f68911b1
commit
2025bca358
4 changed files with 4 additions and 4 deletions
|
@ -66,7 +66,7 @@ class AshesOfTheFallenEffect extends ContinuousEffectImpl {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
discard();;
|
discard();
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1550,7 +1550,7 @@ public class VerifyCardDataTest {
|
||||||
.replace("{this}", card.getName())
|
.replace("{this}", card.getName())
|
||||||
//.replace("<i>", "")
|
//.replace("<i>", "")
|
||||||
//.replace("</i>", "")
|
//.replace("</i>", "")
|
||||||
.replace("—", "—");;
|
.replace("—", "—");
|
||||||
|
|
||||||
boolean found = false;
|
boolean found = false;
|
||||||
for (String refRule : refRules) {
|
for (String refRule : refRules) {
|
||||||
|
|
|
@ -69,7 +69,7 @@ public class PreventDamageToAttachedEffect extends PreventionEffectImpl {
|
||||||
}
|
}
|
||||||
sb.append("damage to ");
|
sb.append("damage to ");
|
||||||
sb.append(attachmentType.verb());
|
sb.append(attachmentType.verb());
|
||||||
sb.append(" creature, prevent ").append(amountToPrevent);;
|
sb.append(" creature, prevent ").append(amountToPrevent);
|
||||||
sb.append(" of that damage");
|
sb.append(" of that damage");
|
||||||
}
|
}
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
|
|
|
@ -110,7 +110,7 @@ public class SpellsCostReductionControllerEffect extends CostModificationEffectI
|
||||||
public boolean applies(Ability abilityToModify, Ability source, Game game) {
|
public boolean applies(Ability abilityToModify, Ability source, Game game) {
|
||||||
if (abilityToModify instanceof SpellAbility) {
|
if (abilityToModify instanceof SpellAbility) {
|
||||||
if (abilityToModify.isControlledBy(source.getControllerId())) {
|
if (abilityToModify.isControlledBy(source.getControllerId())) {
|
||||||
Card spellCard = ((SpellAbility) abilityToModify).getCharacteristics(game);;
|
Card spellCard = ((SpellAbility) abilityToModify).getCharacteristics(game);
|
||||||
if (spellCard != null) {
|
if (spellCard != null) {
|
||||||
return this.filter.match(spellCard, source.getSourceId(), source.getControllerId(), game);
|
return this.filter.match(spellCard, source.getSourceId(), source.getControllerId(), game);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue