I have a Java HashMap used to store some basic string values:
Map<String, String> map = new HashMap<String, String>();
map.put("Id", task.getStorageId());
map.put("Name", task.getName());
map.put("Description", task.getDescription());
Under one usage, the Id entry is overwitten by the Description entry, everytime without fail. I have watched it in the debugger - Id is inserted fine, Name inserted fine, then when Descroption is inserted, it overwrites the Id entry. Using exactly the same code and keys in another part of the application it works with no problems. Totally confused. What is going on here?
Edit
Perhaps I should have mentioned (though it didn't seem relevant), this is happening on Android, not in a JVM. Could that be the issue? I also found it hard to believe but the chunk of code is as simple as the snippet provided. I will try to bundle an Android app that demonstrates it and post somewhere.
"Description"actually contains"Id"? – sepp2k Aug 11 '10 at 11:42HashMapisjava.util.HashMapand not a custom implementation ofMap? – Andreas_D Aug 11 '10 at 11:58