]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Some fixes:
authorRoland Haeder <roland@mxchange.org>
Sun, 10 Apr 2016 13:16:17 +0000 (15:16 +0200)
committerRoland Haeder <roland@mxchange.org>
Sun, 10 Apr 2016 13:16:17 +0000 (15:16 +0200)
- getLastNums() was old stuff, now it is size()
- updated jar(s)

lib/jshop-core.jar
src/java/org/mxchange/pizzaapplication/beans/basket/PizzaBasketWebSessionBean.java

index c876b5ec9c5f067e6739e9038b6fad01ee73649c..30d16dd5106fa2ca4a9653284740c7d1fcb565b4 100644 (file)
Binary files a/lib/jshop-core.jar and b/lib/jshop-core.jar differ
index 2d4db1b60a1cf881e90cd9f55a468d5b21813649..890f7116b07050b8f8d4dbe44fbc265755bb4b36 100644 (file)
@@ -319,7 +319,7 @@ public class PizzaBasketWebSessionBean implements PizzaBasketWebSessionControlle
        @Override
        public int getLastNumRows () {
                // Deligate to basket instance
-               return this.basket.getLastNumRows();
+               return this.basket.size();
        }
 
        @Override