public double calculatePrice() { if(topping.isEmpty()) { return super.getBasePrice() ; } else { return super.getBasePrice() + (topping.size() * 1.5); } }