From: Roland Haeder Date: Mon, 31 Aug 2015 09:54:08 +0000 (+0200) Subject: Ignored for internationalization X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2719d581f6aa53add75b9534f3560da321546483;p=pizzaservice-war.git Ignored for internationalization 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 a94d72c1..337825b5 100644 --- a/src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java +++ b/src/java/org/mxchange/pizzaapplication/application/PizzaServiceApplication.java @@ -62,7 +62,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P */ public PizzaServiceApplication () { // Trace message - this.getLogger().trace("CALLED!"); + this.getLogger().trace("CALLED!"); //NOI18N } @Override @@ -73,7 +73,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P // context should not be null if (null == context) { // Abort here - throw new NullPointerException("context is null"); + throw new NullPointerException("context is null"); //NOI18N } // Is the bundle initialized? @@ -297,7 +297,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P // categoryFrontend must be set if (null == this.productFrontend) { // Abort here - throw new NullPointerException("productFrontend is null"); + throw new NullPointerException("productFrontend is null"); //NOI18N } try { @@ -311,12 +311,12 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P @Override public Iterator getAllProducts () throws ServletException { // Trace message - this.getLogger().trace("CALLED!"); + this.getLogger().trace("CALLED!"); //NOI18N // categoryFrontend must be set if (null == this.productFrontend) { // Abort here - throw new NullPointerException("productFrontend is null"); + throw new NullPointerException("productFrontend is null"); //NOI18N } try { @@ -330,12 +330,12 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P @Override public Iterator getAllCategories () throws ServletException { // Trace message - this.getLogger().trace("CALLED!"); + this.getLogger().trace("CALLED!"); //NOI18N // categoryFrontend must be set if (null == this.categoryFrontend) { // Abort here - throw new NullPointerException("categoryFrontend is null"); + throw new NullPointerException("categoryFrontend is null"); //NOI18N } try { @@ -348,7 +348,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P @Deprecated private boolean isProductChoosen (final Product product, final HttpServletRequest request, final HttpSession session) { - throw new UnsupportedOperationException("This method is deprecated and shall not be called"); + throw new UnsupportedOperationException("This method is deprecated and shall not be called"); //NOI18N } @Override @@ -444,7 +444,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P // categoryFrontend must be set if (null == this.categoryFrontend) { // Abort here - throw new NullPointerException("categoryFrontend is null"); + throw new NullPointerException("categoryFrontend is null"); //NOI18N } // Delegate to frontend @@ -460,7 +460,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P // categoryFrontend must be set if (null == this.productFrontend) { // Abort here - throw new NullPointerException("productFrontend is null"); + throw new NullPointerException("productFrontend is null"); //NOI18N } // Delegate to frontend @@ -867,15 +867,15 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P @Override public Product getProduct (final AddableBasketItem item) throws ServletException { // Trace message - this.getLogger().trace("item=" + item + " - CALLED!"); + this.getLogger().trace("item=" + item + " - CALLED!"); //NOI18N // item should not be null if (null == item) { // Abort here - throw new NullPointerException("item is null"); + throw new NullPointerException("item is null"); //NOI18N } else if (null == this.productFrontend) { // Abort here - throw new NullPointerException("productFrontend is null"); + throw new NullPointerException("productFrontend is null"); //NOI18N } // Init product instance @@ -890,7 +890,7 @@ public class PizzaServiceApplication extends BasePizzaServiceSystem implements P } // Trace message - this.getLogger().trace("product=" + product + " - EXIT!"); + this.getLogger().trace("product=" + product + " - EXIT!"); //NOI18N // Return it return product;