I am trying to modify an ArrayList in a map, but it keeps giving me the "Symbol not found error"
Here is the code:
Map inventories = new TreeMap<String, ArrayList<Item>>();
inventories.put("itms_eqped", new ArrayList<Item>(6));
System.out.println(inventories.get("itms_eqped").get(0));
Here is the error
./Main.java:29: error: cannot find symbol
System.out.println(inventories.get("itms_eqped").get(0));
^
symbol: method get(int)
location: class Object
I've also tried adding stuff to the arrayList and I'm getting the same error: "Cannot find symbol".