Entry -> Map.Entry. Fixes build break

Change-Id: I72fe70d6f617c7753a278e134ac22d71125d8def
This commit is contained in:
Deepanshu Gupta
2016-02-17 20:51:08 -08:00
parent 7914e4ca03
commit 3b6ea2e3a8

View File

@@ -73,7 +73,7 @@ public class FontFamily_Delegate {
private static final Map<String, FontInfo> sCache =
new LinkedHashMap<String, FontInfo>(CACHE_SIZE) {
@Override
protected boolean removeEldestEntry(Entry<String, FontInfo> eldest) {
protected boolean removeEldestEntry(Map.Entry<String, FontInfo> eldest) {
return size() > CACHE_SIZE;
}