Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
craigwi committed Dec 19, 2021
1 parent bb675c6 commit 5293159
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/FFImageLoading.Windows/Cache/LRUCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public void Remove(TKey key)
LinkedListNode<LRUCacheItem<TKey, TValue>> node;
if (_cacheMap.TryGetValue(key, out node))
{
_lruList.Remove(node);
this.RemoveNode(node);
}
}

Expand Down

0 comments on commit 5293159

Please sign in to comment.