Cleanup copy methods (#11038)

* remove System.out.println
* Card copy() covariant return
* Effect copy() covariant return
* Cost copy() covariant return
* Ability copy() covariant return
* ContinuousEffect copy() covariant return
This commit is contained in:
xenohedron 2023-08-26 16:47:54 -04:00 committed by GitHub
parent 948b5e2c25
commit 66cc15ed4b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
71 changed files with 185 additions and 286 deletions

View file

@ -1,4 +1,3 @@
package mage.abilities.effects;
import mage.abilities.Ability;
@ -28,5 +27,5 @@ public interface ReplacementEffect extends ContinuousEffect {
boolean hasSelfScope();
@Override
public ContinuousEffect copy();
ReplacementEffect copy();
}