mirror of
https://github.com/correl/mage.git
synced 2025-04-09 01:01:06 -09:00
fixed copy constructor for RemoveAllCountersSourceCost
This commit is contained in:
parent
439303882c
commit
5c0e7d6b2e
1 changed files with 2 additions and 1 deletions
|
@ -22,9 +22,10 @@ public class RemoveAllCountersSourceCost extends CostImpl {
|
||||||
this.text = "Remove all " + counterType.getName() + " counters from {this}";
|
this.text = "Remove all " + counterType.getName() + " counters from {this}";
|
||||||
}
|
}
|
||||||
|
|
||||||
public RemoveAllCountersSourceCost(RemoveAllCountersSourceCost cost) {
|
private RemoveAllCountersSourceCost(final RemoveAllCountersSourceCost cost) {
|
||||||
super(cost);
|
super(cost);
|
||||||
this.counterType = cost.counterType;
|
this.counterType = cost.counterType;
|
||||||
|
this.removedCounters = cost.removedCounters;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Add table
Reference in a new issue