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() {
return this.stack.peekFirst().getSpellAbility();
}
}
/**
* <p>

View File

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