fix potential bug in CostReturn not setting paidHash correctly (is not used at this time I don't think...)

This commit is contained in:
slapshot5
2011-10-30 14:03:05 +00:00
parent dc5e700b4d
commit 3960e9181c

View File

@@ -242,12 +242,12 @@ public class CostReturn extends CostPartWithList {
public void done() {
stop();
part.addListToHash(sa, "Returned");
payment.paidCost(part);
}
public void cancel() {
stop();
part.addListToHash(sa, "Returned");
payment.cancelCost();
}
};