From 669c4f6d43f6739d9d122d4f10f80daf7388db09 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Sat, 5 Sep 2015 12:12:03 +0200 Subject: [PATCH] =?utf8?q?Added=20check=20on=20zero=20Signed-off-by:Roland?= =?utf8?q?=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../application/PizzaServiceApplication.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java b/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java index 62790de..d87bf40 100644 --- a/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java +++ b/src/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java @@ -236,6 +236,9 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz } else if (null == categoryId) { // "title" not set throw new IllegalArgumentException("product category id is not set."); //NOI18N + } else if (categoryId == 0) { + // "title" not set + throw new IllegalArgumentException("product category id is zero."); //NOI18N } else if (null == available) { // "title" not set throw new IllegalArgumentException("product availability not set."); //NOI18N @@ -292,10 +295,7 @@ public class PizzaServiceApplication extends BaseFrameworkSystem implements Pizz } // Declare category - Category category; - - // Get Category instance from product over the frontend - category = this.categoryFrontend.getCategory(product); + Category category = this.categoryFrontend.getCategory(product); // Debug message this.getLogger().debug(MessageFormat.format("categoryId={0}", category)); //NOI18N -- 2.39.5