Exemple #1
0
  public void remove(String cacheKey) {
    synchronized (mMemoryCache) {
      mMemoryCache.remove(getCacheKey(cacheKey));
    }

    try {
      mDiskCache.remove(getCacheKey(cacheKey));
    } catch (IOException e) {
      e.printStackTrace();
    }
  }