Guava offers a nice shortcut for initializing a map. However I get the following compiler error (Eclipse Indigo) when my map initializes to nine entries.
The metho
"put" has been deprecated, refrain from using it, use .of instead
ImmutableMap myMap = ImmutableMap.of( "city1", "Seattle", "city2", "Delhi" );