I am getting the warning Note: Main.java uses unchecked or unsafe operations. in the following code
ArrayList<Product> cartItems = myCart.getItemsList();
How to remove this warning.
I am getting the warning Note: Main.java uses unchecked or unsafe operations. in the following code
ArrayList<Product> cartItems = myCart.getItemsList();
How to remove this warning.
Copyright © 2021 Jogjafile Inc.
myCart.getItemsList()returnsListorArrayList, and does the type have parameter<Product>?List<Product> cartItems, which should be sufficient in most cases, and make suremyCart.getItemsList()returnsList<Product>.