- updated JAR has renamed copyAll() to copyFooData()
Signed-off-by: Roland Häder <roland@mxchange.org>
}
// Copy all data
- Receipts.copyAll(receipt, this.getCurrentReceipt());
+ Receipts.copyReceiptData(receipt, this.getCurrentReceipt());
// Create updated receipt instance
final BillableReceipt updatedReceipt;
// Is the same id?
if (Objects.equals(receipt.getReceiptId(), event.getReceipt().getReceiptId())) {
// Yes, same primary key found, then copy all elements
- Receipts.copyAll(event.getReceipt(), receipt);
+ Receipts.copyReceiptData(event.getReceipt(), receipt);
// Mark as found, break loop
isFound = true;