Beispiel #1
0
 public void clearImageData(MediaPath path, long timeModified, int type) {
   byte[] key = makeKey(path, timeModified, type);
   long cacheKey = Utils.crc64Long(key);
   synchronized (mCache) {
     try {
       mCache.clearEntry(cacheKey);
     } catch (IOException ex) {
       // ignore.
     }
   }
 }