]> git.mxchange.org Git - pizzaservice-swing.git/commitdiff
Cleanup through inspection + updated jar(s)
authorRoland Haeder <roland@mxchange.org>
Thu, 15 Oct 2015 07:52:46 +0000 (09:52 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 15 Oct 2015 07:52:46 +0000 (09:52 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcore-logger-lib.jar
lib/jcore-swing.jar
lib/jcore.jar
lib/jcoreee.jar
lib/jshop-core.jar
lib/jshop-ee-lib.jar
src/org/mxchange/pizzaapplication/application/PizzaApplication.java

index 5049937263bc38db18ddd3a2d142e3f0d86881ed..ce30ba8ab061bc1a1e57a982ffaeea02ad9cb21f 100644 (file)
Binary files a/lib/jcore-logger-lib.jar and b/lib/jcore-logger-lib.jar differ
index 427a4b307cb3fb4df0f706da679b2d4e6c104cc6..b66098fd63eceb1e1d146121b9b302035308a665 100644 (file)
Binary files a/lib/jcore-swing.jar and b/lib/jcore-swing.jar differ
index a6eb677503c0d30b4193df4b45c57ed7216d2652..1c2e5700bc02644df1ffeab194e3f5068109e9bc 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index db108dde70c9a04dcc1d5eb7468ba40659daec95..6ea5dee81a9fef485994cf2c6831b836dd543c7d 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index a0a803090b9de5252a7c55008a75b4e0b5abf322..9ae15ea5c10b56e92ef7597aa9ceff75dd82039b 100644 (file)
Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ
index dccf16a3308f775236540777a86871e11785decd..b7cc11d2731ff2728b99bbbcca51d23f76a604e8 100644 (file)
Binary files a/lib/jshop-ee-lib.jar and b/lib/jshop-ee-lib.jar differ
index e6b158e5123e12b82bbcb07b6c8329a9c44d5489..47f9bb650d015b45978a5469c459e50c9ef8a18a 100644 (file)
@@ -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
         * <p>
         * @return All categories
         */
-       public Deque<Category> getAllCategories ();
+       Deque<Category> getAllCategories ();
 
        /**
         * Some "getter" for a an array of all categories
         * <p>
         * @return All categories
         */
-       public Iterator<Category> getAllCategoriesIterator ();
+       Iterator<Category> getAllCategoriesIterator ();
 
        /**
         * Some "getter" for a linked list of all products
         * <p>
         * @return All products
         */
-       public Deque<Product> getAllProducts ();
+       Deque<Product> getAllProducts ();
 
        /**
         * Some "getter" for a an array of all products
         * <p>
         * @return All products
         */
-       public Iterator<Product> getAllProductsIterator ();
+       Iterator<Product> getAllProductsIterator ();
 
        /**
         * Some "getter" for a linked list of only available products
         * <p>
         * @return Only available products
         */
-       public Deque<Product> getAvailableProducts ();
+       Deque<Product> getAvailableProducts ();
 
        /**
         * Some "getter" for a an array of only available products
         * <p>
         * @return Only available products
         */
-       public Iterator<Product> getAvailableProductsIterator ();
+       Iterator<Product> 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;
 }