am d16fa893: Use Map.Entry, not HashMap.Entry

* commit 'd16fa893d1a24497147fd91b32698ff7bf695600':
  Use Map.Entry, not HashMap.Entry
This commit is contained in:
Andy McFadden 2012-01-23 09:36:03 -08:00 committed by Android Git Automerger
commit 13646739db

View File

@ -167,7 +167,7 @@ public final class ContentCache {
/**
* For Debugging Only - not efficient
*/
synchronized Set<HashMap.Entry<T, Integer>> entrySet() {
synchronized Set<Map.Entry<T, Integer>> entrySet() {
return mMap.entrySet();
}
}