- Added missing removeImprinted function.

This commit is contained in:
Sloth
2012-11-11 20:52:35 +00:00
parent af983044d1
commit 9e16455467

View File

@@ -644,6 +644,10 @@ public class Card extends GameEntity implements Comparable<Card> {
this.imprintedCards.addAll(list); this.imprintedCards.addAll(list);
} }
public final void removeImprinted(final Object o) {
this.imprintedCards.remove(o);
}
/** /**
* <p> * <p>
* getImprinted. * getImprinted.