]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Ignored for internationalization
authorRoland Haeder <roland@mxchange.org>
Mon, 24 Aug 2015 13:12:24 +0000 (15:12 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 24 Aug 2015 13:12:24 +0000 (15:12 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/java/org/mxchange/pizzaapplication/basket/BaseBasket.java

index d287965afe388801fdb2451d4a8258bf4ca3b140..953cfa7db078134ae8a083286147a34f803ab7f0 100644 (file)
@@ -91,16 +91,16 @@ public class BaseBasket extends BaseFrameworkSystem implements Basket<AddableBas
        @Override
        public AddableBasketItem getItem (final Product product) {
                // Trace message
-               this.getLogger().trace(MessageFormat.format("product={0} - CALLED!", product));
+               this.getLogger().trace(MessageFormat.format("product={0} - CALLED!", product)); //NOI18N
 
                // product must not be null
                if (product == null) {
                        // Abort here
-                       throw new NullPointerException("product is null");
+                       throw new NullPointerException("product is null"); //NOI18N
                }
 
                // Debug message
-               this.getLogger().debug("Product " + product.getTitle() +  " has id " + product.getId());
+               this.getLogger().debug("Product " + product.getTitle() +  " has id " + product.getId()); //NOI18N
 
                // Get item instance from map by product's id number (both are the same)
                AddableBasketItem item = this.items.get(product.getId());
@@ -108,10 +108,10 @@ public class BaseBasket extends BaseFrameworkSystem implements Basket<AddableBas
                // Is it null?
                if (item == null) {
                        // Trace message
-                       this.getLogger().trace("item=null - EXIT!");
+                       this.getLogger().trace("item=null - EXIT!"); //NOI18N
                } else {
                        // Trace message
-                       this.getLogger().trace(MessageFormat.format("item={0} with id={1},amount={2} - EXIT!", item, item.getId(), item.getAmount()));
+                       this.getLogger().trace(MessageFormat.format("item={0} with id={1},amount={2} - EXIT!", item, item.getId(), item.getAmount())); //NOI18N
                }
 
                // Return it