* 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

@ -39,9 +39,9 @@ import mage.game.stack.Spell;
*
* @author LevelX2
*/
public class ManaSpentToCastCount implements DynamicValue{
public class ManaSpentToCastCount implements DynamicValue {
public ManaSpentToCastCount(){
public ManaSpentToCastCount() {
}
@Override
@ -61,7 +61,7 @@ public class ManaSpentToCastCount implements DynamicValue{
}
@Override
public DynamicValue copy() {
public ManaSpentToCastCount copy() {
return new ManaSpentToCastCount();
}