Hi, > talking about performance...what is the difference between new > HashMap<...>() and your suggested Maps.newHashMap() ?
According to my test, there is no performance difference in Java 1.5 and Java 1.6. I guess the method is inlined because it is so simple. Regards, Thomas
