]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Got rid of another empty class
authorRoland Haeder <roland@mxchange.org>
Fri, 4 Sep 2015 18:09:10 +0000 (20:09 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 4 Sep 2015 18:09:10 +0000 (20:09 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/java/org/mxchange/pizzaapplication/BasePizzaServiceSystem.java [deleted file]
src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java
src/java/org/mxchange/pizzaapplication/beans/customer/PizzaServiceCustomerWebBean.java

diff --git a/src/java/org/mxchange/pizzaapplication/BasePizzaServiceSystem.java b/src/java/org/mxchange/pizzaapplication/BasePizzaServiceSystem.java
deleted file mode 100644 (file)
index dfc3cfa..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright (C) 2015 Roland Haeder
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-package org.mxchange.pizzaapplication;
-
-import org.mxchange.jsfcore.BaseServletSystem;
-
-/**
- * A general class for whole pizza application.
- *
- * @author Roland Haeder
- */
-public class BasePizzaServiceSystem extends BaseServletSystem {
-}
index 6b578572314112e603c7a4289bfef45cb383e3a1..8228db5d12d2e6d37ae73e564be8c3c355083e56 100644 (file)
@@ -22,19 +22,18 @@ import java.sql.SQLException;
 import java.text.MessageFormat;
 import java.util.Deque;
 import java.util.Iterator;
+import org.mxchange.jsfcore.BaseServletSystem;
 import org.mxchange.jshop.category.Category;
 import org.mxchange.jshop.exceptions.CategoryTitleAlreadyUsedException;
 import org.mxchange.jshop.exceptions.ProductTitleAlreadyUsedException;
-import org.mxchange.jshop.item.AddableBasketItem;
 import org.mxchange.jshop.product.Product;
-import org.mxchange.pizzaapplication.BasePizzaServiceSystem;
 
 /**
  * Main application class
  *
  * @author Roland Haeder
  */
-public class PizzaServiceApplication extends BasePizzaServiceSystem implements PizzaApplication {
+public class PizzaServiceApplication extends BaseServletSystem implements PizzaApplication {
        /**
         * Default constructor
         */
index 85ec1b678be34e5b79250eff2768dc0abf315de1..116ef539742763a332c455bd49041887f02806ea 100644 (file)
  */
 package org.mxchange.pizzaapplication.beans.customer;
 
-import java.lang.reflect.Field;
-import java.lang.reflect.InvocationTargetException;
-import java.util.Iterator;
-import java.util.Map;
 import javax.enterprise.context.SessionScoped;
 import javax.inject.Named;
 import org.mxchange.jcore.client.Client;