Use Map.Entry, not HashMap.Entry
Map.Entry is the defined return value from entrySet(). HashMap.Entry shouldn't be used directly. Change-Id: I855f7a4e855776deb83754ca89c2a4128e9e04a2
This commit is contained in:
parent
c8afa2f5cb
commit
d16fa893d1
@ -167,7 +167,7 @@ public final class ContentCache {
|
|||||||
/**
|
/**
|
||||||
* For Debugging Only - not efficient
|
* For Debugging Only - not efficient
|
||||||
*/
|
*/
|
||||||
synchronized Set<HashMap.Entry<T, Integer>> entrySet() {
|
synchronized Set<Map.Entry<T, Integer>> entrySet() {
|
||||||
return mMap.entrySet();
|
return mMap.entrySet();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user