Handle rename of LruCache.entryEvicted to entryRemoved

Change-Id: I50e5a8d8c35c4431f42c7483172447ba0e4e125b
http://b/3461302
This commit is contained in:
Jesse Wilson
2011-02-25 17:28:41 -08:00
parent affe40af3c
commit 32c80a27da
2 changed files with 7 additions and 4 deletions

View File

@ -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;
}
}
/**