mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
remove unused method Card.build()
This commit is contained in:
parent
e40329e6e2
commit
592cd55518
15 changed files with 0 additions and 49 deletions
|
|
@ -147,8 +147,6 @@ public interface Card extends MageObject {
|
|||
|
||||
List<Mana> getMana();
|
||||
|
||||
void build();
|
||||
|
||||
/**
|
||||
*
|
||||
* @return true if there exists various art images for this card
|
||||
|
|
|
|||
|
|
@ -190,7 +190,6 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
|
|||
Constructor<?> con = clazz.getConstructor(UUID.class, CardSetInfo.class);
|
||||
card = (Card) con.newInstance(null, setInfo);
|
||||
}
|
||||
card.build();
|
||||
return card;
|
||||
} catch (Exception e) {
|
||||
logger.fatal("Error loading card: " + clazz.getCanonicalName(), e);
|
||||
|
|
@ -597,10 +596,6 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
|
|||
return splitCard;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void build() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean getUsesVariousArt() {
|
||||
return usesVariousArt;
|
||||
|
|
|
|||
|
|
@ -840,10 +840,6 @@ public class Spell extends StackObjImpl implements Card {
|
|||
return isCopiedSpell();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void build() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public Counters getCounters(Game game) {
|
||||
return card.getCounters(game);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue