Moved getCard to CardImpl, no need to override it in card implementation anymore. Updated recent Seaside Citadel as example.

This commit is contained in:
magenoxx 2010-12-12 19:05:18 +03:00
parent 237ffabafb
commit 6e347d835a
2 changed files with 4 additions and 5 deletions

View file

@ -60,9 +60,4 @@ public class SeasideCitadel extends CardImpl<SeasideCitadel> {
public SeasideCitadel copy() {
return new SeasideCitadel(this);
}
@Override
public String getArt() {
return "";
}
}

View file

@ -265,4 +265,8 @@ public abstract class CardImpl<T extends CardImpl<T>> extends MageObjectImpl<T>
return true;
}
@Override
public String getArt() {
return "";
}
}