Revert "Implemented Portal Mage"

This reverts commit 29471f9bd5.
This commit is contained in:
Evan Kranzler 2017-08-28 12:29:02 -04:00
parent 75934f5513
commit f1cfc8ca5c
3 changed files with 2 additions and 177 deletions

View file

@ -42,8 +42,8 @@ import mage.players.Player;
*/
public class FilterPermanentOrPlayer extends FilterImpl<MageItem> implements FilterInPlay<MageItem> {
protected FilterPermanent permanentFilter;
protected FilterPlayer playerFilter;
protected final FilterPermanent permanentFilter;
protected final FilterPlayer playerFilter;
public FilterPermanentOrPlayer() {
this("player or permanent");
@ -90,18 +90,10 @@ public class FilterPermanentOrPlayer extends FilterImpl<MageItem> implements Fil
return this.permanentFilter;
}
public void setPermanentFilter(FilterPermanent permanentFilter) {
this.permanentFilter = permanentFilter;
}
public FilterPlayer getPlayerFilter() {
return this.playerFilter;
}
public void setPlayerFilter(FilterPlayer playerFilter) {
this.playerFilter = playerFilter;
}
@Override
public FilterPermanentOrPlayer copy() {
return new FilterPermanentOrPlayer(this);