Как правильно использовать HashMap?

HashMap savedStuff = new HashMap();
savedStuff.put("symbol", this.symbol); //this is a string
savedStuff.put("index", this.index); //this is an int

выдает предупреждение:

HashMap is a raw type. References to generic type HashMap<K,V> should be parameterized  
12
задан Sheehan Alam 4 September 2010 в 02:28
поделиться