* Changed return class of copy method.

This commit is contained in:
LevelX2 2015-07-30 11:29:36 +02:00
parent 2aa2ad7252
commit 67bd4956d9
34 changed files with 148 additions and 120 deletions

View file

@ -25,7 +25,6 @@
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of BetaSteward_at_googlemail.com.
*/
package mage.abilities.dynamicvalue.common;
import mage.abilities.Ability;
@ -38,8 +37,6 @@ import mage.game.combat.CombatGroup;
*
* @author LevelX2
*/
public class AttackingCreatureCount implements DynamicValue {
private String message;
@ -67,7 +64,7 @@ public class AttackingCreatureCount implements DynamicValue {
}
@Override
public DynamicValue copy() {
public AttackingCreatureCount copy() {
return new AttackingCreatureCount(this);
}