Handle rename of LruCache.entryEvicted to entryRemoved
Change-Id: I50e5a8d8c35c4431f42c7483172447ba0e4e125b http://b/3461302
This commit is contained in:
@ -748,8 +748,10 @@ public class SettingsProvider extends ContentProvider {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected synchronized void entryEvicted(String key, Bundle value) {
|
||||
mCacheFullyMatchesDisk = false;
|
||||
protected void entryRemoved(boolean evicted, String key, Bundle oldValue, Bundle newValue) {
|
||||
if (evicted) {
|
||||
mCacheFullyMatchesDisk = false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user