I am sick of the following pattern:
value = map.get(key);
if (value == null) {
value = new Object();
map.put(key, value);
}
You might say 'oh come on, it's not that much effort and is good pratice' but this example only scratches the surface of the extra code to be written when you have nested maps to represent a multi-dimensional structure.
I'm sure something somewhere exists to avoid this but my Googling efforts yielded nothing relevant.