- Cleanup.

This commit is contained in:
Sloth
2012-09-07 09:00:36 +00:00
parent c9ddba5132
commit ef37ae475b
2 changed files with 0 additions and 3 deletions

View File

@@ -8294,8 +8294,6 @@ public class Card extends GameEntity implements Comparable<Card> {
if (damageToAdd == 0) { if (damageToAdd == 0) {
return false; // Rule 119.8 return false; // Rule 119.8
} }
System.out.println("Adding " + damageToAdd + " damage to " + this.getName());
Log.debug("Adding " + damageToAdd + " damage to " + this.getName()); Log.debug("Adding " + damageToAdd + " damage to " + this.getName());
this.addReceivedDamageFromThisTurn(source, damageToAdd); this.addReceivedDamageFromThisTurn(source, damageToAdd);

View File

@@ -1220,7 +1220,6 @@ public final class AbilityFactoryChangeZone {
c = first; c = first;
} }
} }
System.out.println("Chose " + c.toString());
fetched.add(c); fetched.add(c);
fetchList.remove(c); fetchList.remove(c);