Removed nullable

This commit is contained in:
TheXamlGuy
2024-09-29 17:05:47 +01:00
parent c3285f30c7
commit 39f4e28f29
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -195,7 +195,7 @@ public class Cache<TKey, TValue>(IComparer<TKey> comparer) :
}
private class KeyValuePairComparer<TK, TV>(IComparer<TK> comparer) :
IComparer<KeyValuePair<TK, TV>>
IComparer<KeyValuePair<TK, TV>>
{
private readonly IComparer<TK> comparer = comparer ?? Comparer<TK>.Default;