mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00: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}";
|
||||
}
|
||||
|
||||
public RemoveAllCountersSourceCost(RemoveAllCountersSourceCost cost) {
|
||||
private RemoveAllCountersSourceCost(final RemoveAllCountersSourceCost cost) {
|
||||
super(cost);
|
||||
this.counterType = cost.counterType;
|
||||
this.removedCounters = cost.removedCounters;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue