Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mgravell committed Jul 10, 2024
1 parent 5b93d34 commit 30533c3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public virtual ValueTask RemoveAsync(IEnumerable<string> keys, CancellationToken
{
// for consistency with GetOrCreate/Set: interpret null as "none"
null or ICollection<string> { Count: 0 } => default,
ICollection<string> { Count: 1 } => RemoveByTagAsync(keys.Single(), cancellationToken),
ICollection<string> { Count: 1 } => RemoveAsync(keys.Single(), cancellationToken),
_ => ForEachAsync(this, keys, cancellationToken),
};

Expand Down

0 comments on commit 30533c3

Please sign in to comment.