]> source.dussan.org Git - sonarqube.git/blob
cc4e393d9257385e0879922750a1f99484052e07
[sonarqube.git] /
1 <p>The entrySet() method is allowed to return a view of the underlying Map in which a single Entry
2  object is reused and returned during the iteration. As of Java 1.6, both IdentityHashMap and EnumMap
3  did so. When iterating through such a Map, the Entry value is only valid until you advance to the 
4  next iteration. If, for example, you try to pass such an entrySet to an addAll method, things will 
5  go badly wrong.</p>