Skip to content

Commit

Permalink
Better overload selection
Browse files Browse the repository at this point in the history
  • Loading branch information
jodydonetti committed Apr 23, 2024
1 parent 7303ebd commit d290731
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class NullMemoryLocker
/// <inheritdoc/>
public ValueTask<object?> AcquireLockAsync(string cacheName, string cacheInstanceId, string operationId, string key, TimeSpan timeout, ILogger? logger, CancellationToken token)
{
return new ValueTask<object?>(null);
return new ValueTask<object?>((object?)null);
}

/// <inheritdoc/>
Expand Down

0 comments on commit d290731

Please sign in to comment.