import java.text.MessageFormat;
import java.util.Deque;
import java.util.Iterator;
+import org.mxchange.jcore.BaseFrameworkSystem;
import org.mxchange.jsfcore.BaseServletSystem;
import org.mxchange.jshop.category.Category;
import org.mxchange.jshop.exceptions.CategoryTitleAlreadyUsedException;
this.getLogger().trace("CALLED!"); //NOI18N
// Ask frontend for a list of products
- return (Iterator<Product>) this.productFrontend.getAvailableProductsIterator();
+ return this.productFrontend.getAvailableProductsIterator();
}
@Override
this.getLogger().trace("CALLED!"); //NOI18N
// Ask frontend for a list of products
- return (Iterator<Product>) this.productFrontend.getAllProductsIterator();
+ return this.productFrontend.getAllProductsIterator();
}
@Override
this.getLogger().trace("CALLED!"); //NOI18N
// Ask frontend for a list of categories
- return (Iterator<Category>) this.categoryFrontend.getAllCategoriesIterator();
+ return this.categoryFrontend.getAllCategoriesIterator();
}
/**