Skip to content

Commit

Permalink
Used List instead of IList in MultiValueDictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
glen-84 committed Dec 12, 2024
1 parent fbbdc39 commit 0984abf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace HotChocolate.Fusion.Collections;

internal sealed class MultiValueDictionary<TKey, TValue>
: Dictionary<TKey, IList<TValue>> where TKey : notnull
: Dictionary<TKey, List<TValue>> where TKey : notnull
{
public void Add(TKey key, TValue value)
{
Expand Down

0 comments on commit 0984abf

Please sign in to comment.