]> git.mxchange.org Git - pizzaservice-ejb.git/commitdiff
Product-only:
authorRoland Häder <roland@mxchange.org>
Sat, 18 Apr 2020 13:51:24 +0000 (15:51 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 18 Apr 2020 14:50:27 +0000 (16:50 +0200)
- updated JARs have new copyFooData() method names

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/pizzaapplication/enterprise/product/BasePizzaProductEnterpriseBean.java

index d2cad5903e3d9bdcdacd41c24968db07e556869d..dbb93bc113d1c5186a6229cdbba1c51516b797ab 100644 (file)
@@ -154,7 +154,7 @@ public abstract class BasePizzaProductEnterpriseBean extends BasePizzaEnterprise
                this.getLoggerBeanLocal().logDebug(MessageFormat.format("mergeProductData: foundProduct.productId={0}", foundProduct.getProductId())); //NOI18N
 
                // Copy all
-               Products.copyAll(detachedProduct, foundProduct);
+               Products.copyProductData(detachedProduct, foundProduct);
 
                // Merge product instance
                final Product managedProduct = this.getEntityManager().merge(foundProduct);