Replace private Map cars = new HashMap(); w/ final Map<String,Car> cars = new HashMap<String,Car>();
private Map cars = new HashMap();
final Map<String,Car> cars = new HashMap<String,Car>();