From: Roland Haeder Date: Fri, 4 Sep 2015 20:49:28 +0000 (+0200) Subject: Cleanups X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=32a5f60dd75a91b85d62d1f2b852f11f7204116c;p=pizzaservice-war.git Cleanups Signed-off-by:Roland Häder --- 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(); } /**