From 77d7d0f2785b182c8d589376351b26d1c4b0fb29 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 16 Apr 2020 22:09:49 +0200 Subject: [PATCH] Please cherry-pick: - method names have been updated in business opening times MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../pizzaapplication/enterprise/BasePizzaEnterpriseBean.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/mxchange/pizzaapplication/enterprise/BasePizzaEnterpriseBean.java b/src/java/org/mxchange/pizzaapplication/enterprise/BasePizzaEnterpriseBean.java index 06dd2f4..afbf55b 100644 --- a/src/java/org/mxchange/pizzaapplication/enterprise/BasePizzaEnterpriseBean.java +++ b/src/java/org/mxchange/pizzaapplication/enterprise/BasePizzaEnterpriseBean.java @@ -764,13 +764,13 @@ public abstract class BasePizzaEnterpriseBean extends BaseEnterpriseBean { // Walk through whole list for (final OpeningTime openingTime : openingTimes) { // Id should not be set - if (openingTime.getOpeningId() != null) { + if (openingTime.getOpeningTimeId() != null) { // Abort here throw new IllegalStateException("openingTime.openingId is not null"); } // Set created timestamp - openingTime.setOpeningCreated(new Date()); + openingTime.setOpeningTimeEntryCreated(new Date()); } } -- 2.39.5