compile errors

This commit is contained in:
Maxmtg
2013-05-14 05:29:25 +00:00
parent cf2d6466a9
commit e3836fc1f7
2 changed files with 1 additions and 3 deletions

View File

@@ -844,7 +844,6 @@ public class MagicStack extends MyObservable implements Iterable<SpellAbilitySta
public final SpellAbility peekAbility() { public final SpellAbility peekAbility() {
return this.stack.peekFirst().getSpellAbility(); return this.stack.peekFirst().getSpellAbility();
} }
}
/** /**
* <p> * <p>

View File

@@ -136,8 +136,7 @@ public enum VStack implements IVDoc<CStack> {
stackTARs.clear(); stackTARs.clear();
boolean isFirst = true; boolean isFirst = true;
for (int i = 0;i<stack.size();i++) { for (final SpellAbilityStackInstance spell : stack) {
final SpellAbilityStackInstance spell = stack.getStack().get(i);
scheme = getSpellColor(spell); scheme = getSpellColor(spell);
String isOptional = spell.getSpellAbility().isOptionalTrigger() && spell.getSourceCard().getController().equals(viewer) ? "(OPTIONAL) " : ""; String isOptional = spell.getSpellAbility().isOptionalTrigger() && spell.getSourceCard().getController().equals(viewer) ? "(OPTIONAL) " : "";