How do I address unchecked cast warnings?

后端 未结 23 1204
醉梦人生
醉梦人生 2020-11-22 03:06

Eclipse is giving me a warning of the following form:

Type safety: Unchecked cast from Object to HashMap

This is from a call to

23条回答
  •  忘了有多久
    2020-11-22 03:52

    This makes the warnings go away...

     static Map getItems(HttpSession session) {
            HashMap theHash1 = (HashMap)session.getAttribute("attributeKey");
            HashMap theHash = (HashMap)theHash1;
        return theHash;
    }
    

提交回复
热议问题