Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3b6ea2e3 authored by Deepanshu Gupta's avatar Deepanshu Gupta
Browse files

Entry -> Map.Entry. Fixes build break

Change-Id: I72fe70d6f617c7753a278e134ac22d71125d8def
parent 7914e4ca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
        }