public class ReOrderList { public static void reOrder(Food qtyInStock, Food reOrderPoint) { if(qtyInStock < reOrderPoint) { } } }
I get an error message saying
"The operator < is undefined for the argument type(s) ca1.Food, ca1.Food"
Any ideas on what this mean?