Use CheckExists function

This commit is contained in:
Dean Herbert 2020-11-06 16:57:09 +09:00
parent 9bb32f0914
commit d3a303e251
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ public abstract class MemoryCachingComponent<TLookup, TValue> : Component
/// <param name="token">An optional <see cref="CancellationToken"/> to cancel the operation.</param>
protected async Task<TValue> GetAsync([NotNull] TLookup lookup, CancellationToken token = default)
{
if (cache.TryGetValue(lookup, out TValue performance))
if (CheckExists(lookup, out TValue performance))
return performance;
var computed = await ComputeValueAsync(lookup, token);