Coding in the small with Google Collections: Maps, Sets and Lists
Part 11 in a Series by Jerome Mourits, Guest blogger... Generics are good, but they can be really wordy! Before: Map<CustomerId, BillingOrderHistory> customerOrderHistoryMap = new HashMap<CustomerId, BillingOrderHistory>();`</pre> ### After: <pre class="prettyprint">`Map<…