forked from External/mage
clean some of the most frequent copy constructor / copy method (#11053)
This commit is contained in:
parent
5ddb69e1ba
commit
96a2c277b2
66 changed files with 132 additions and 134 deletions
|
|
@ -2,12 +2,11 @@
|
|||
|
||||
package mage.cards.basiclands;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.ObjectColor;
|
||||
import mage.abilities.mana.BlackManaAbility;
|
||||
import mage.cards.Card;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
|
|
@ -18,12 +17,12 @@ public class Swamp extends BasicLand {
|
|||
this.frameColor.setBlack(true);
|
||||
}
|
||||
|
||||
public Swamp(Swamp land) {
|
||||
private Swamp(final Swamp land) {
|
||||
super(land);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Card copy() {
|
||||
public Swamp copy() {
|
||||
return new Swamp(this);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue