From 32a5f60dd75a91b85d62d1f2b852f11f7204116c Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Fri, 4 Sep 2015 22:49:28 +0200 Subject: [PATCH] =?utf8?q?Cleanups=20Signed-off-by:Roland=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../application/PizzaServiceApplication.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java b/src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java index 1161421a..5eda780d 100644 --- a/src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java +++ b/src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java @@ -22,6 +22,7 @@ import java.sql.SQLException; import java.text.MessageFormat; import java.util.Deque; import java.util.Iterator; +import org.mxchange.jcore.BaseFrameworkSystem; import org.mxchange.jsfcore.BaseServletSystem; import org.mxchange.jshop.category.Category; import org.mxchange.jshop.exceptions.CategoryTitleAlreadyUsedException; @@ -120,7 +121,7 @@ public class PizzaServiceApplication extends BaseServletSystem implements PizzaA this.getLogger().trace("CALLED!"); //NOI18N // Ask frontend for a list of products - return (Iterator) this.productFrontend.getAvailableProductsIterator(); + return this.productFrontend.getAvailableProductsIterator(); } @Override @@ -130,7 +131,7 @@ public class PizzaServiceApplication extends BaseServletSystem implements PizzaA this.getLogger().trace("CALLED!"); //NOI18N // Ask frontend for a list of products - return (Iterator) this.productFrontend.getAllProductsIterator(); + return this.productFrontend.getAllProductsIterator(); } @Override @@ -140,7 +141,7 @@ public class PizzaServiceApplication extends BaseServletSystem implements PizzaA this.getLogger().trace("CALLED!"); //NOI18N // Ask frontend for a list of categories - return (Iterator) this.categoryFrontend.getAllCategoriesIterator(); + return this.categoryFrontend.getAllCategoriesIterator(); } /** -- 2.39.5