From: Roland Haeder Date: Thu, 15 Oct 2015 07:52:46 +0000 (+0200) Subject: Cleanup through inspection + updated jar(s) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9307ee65434357953afcbb27b9dbfbc07102aae9;p=pizzaservice-swing.git Cleanup through inspection + updated jar(s) Signed-off-by:Roland Häder --- diff --git a/lib/jcore-logger-lib.jar b/lib/jcore-logger-lib.jar index 5049937..ce30ba8 100644 Binary files a/lib/jcore-logger-lib.jar and b/lib/jcore-logger-lib.jar differ diff --git a/lib/jcore-swing.jar b/lib/jcore-swing.jar index 427a4b3..b66098f 100644 Binary files a/lib/jcore-swing.jar and b/lib/jcore-swing.jar differ diff --git a/lib/jcore.jar b/lib/jcore.jar index a6eb677..1c2e570 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/lib/jcoreee.jar b/lib/jcoreee.jar index db108dd..6ea5dee 100644 Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ diff --git a/lib/jshop-core.jar b/lib/jshop-core.jar index a0a8030..9ae15ea 100644 Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ diff --git a/lib/jshop-ee-lib.jar b/lib/jshop-ee-lib.jar index dccf16a..b7cc11d 100644 Binary files a/lib/jshop-ee-lib.jar and b/lib/jshop-ee-lib.jar differ diff --git a/src/org/mxchange/pizzaapplication/application/PizzaApplication.java b/src/org/mxchange/pizzaapplication/application/PizzaApplication.java index e6b158e..47f9bb6 100644 --- a/src/org/mxchange/pizzaapplication/application/PizzaApplication.java +++ b/src/org/mxchange/pizzaapplication/application/PizzaApplication.java @@ -41,7 +41,7 @@ public interface PizzaApplication extends Application { * org.mxchange.jshopcore.exceptions.CategoryTitleAlreadyUsedException If * the category's title has been used */ - public void doAdminAddCategory (final Category category) throws CategoryTitleAlreadyUsedException; + void doAdminAddCategory (final Category category) throws CategoryTitleAlreadyUsedException; /** * Adds given product data from request to database @@ -52,49 +52,49 @@ public interface PizzaApplication extends Application { * org.mxchange.jshopcore.exceptions.ProductTitleAlreadyUsedException If the * * product's title has been used */ - public void doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException; + void doAdminAddProduct (final Product product) throws ProductTitleAlreadyUsedException; /** * Some "getter" for a linked list of all categories *

* @return All categories */ - public Deque getAllCategories (); + Deque getAllCategories (); /** * Some "getter" for a an array of all categories *

* @return All categories */ - public Iterator getAllCategoriesIterator (); + Iterator getAllCategoriesIterator (); /** * Some "getter" for a linked list of all products *

* @return All products */ - public Deque getAllProducts (); + Deque getAllProducts (); /** * Some "getter" for a an array of all products *

* @return All products */ - public Iterator getAllProductsIterator (); + Iterator getAllProductsIterator (); /** * Some "getter" for a linked list of only available products *

* @return Only available products */ - public Deque getAvailableProducts (); + Deque getAvailableProducts (); /** * Some "getter" for a an array of only available products *

* @return Only available products */ - public Iterator getAvailableProductsIterator (); + Iterator getAvailableProductsIterator (); /** * Initializes this instance with given ServletContext @@ -102,5 +102,5 @@ public interface PizzaApplication extends Application { * @throws java.sql.SQLException If an SQL error occurs * @throws java.io.IOException If an IO error occurs */ - public void init () throws SQLException, IOException; + void init () throws SQLException, IOException; }