Eclipse is giving me a warning of the following form:
Type safety: Unchecked cast from Object to HashMap
This is from a call to
In Android Studio if you want to disable inspection you can use:
//noinspection unchecked Map myMap = (Map) deserializeMap();