1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00

Use CheckExists function

This commit is contained in:
Dean Herbert 2020-11-06 16:57:09 +09:00
parent 9bb32f0914
commit d3a303e251

View File

@ -26,7 +26,7 @@ namespace osu.Game.Database
/// <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);