Skip to content

Commit 246d57e

Browse files
committed
Fix null
1 parent 71a222b commit 246d57e

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/DotNetCampus.LatestCSharpFeatures/KeyValuePair/KeyValuePair.g.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ namespace System.Collections.Generic;
1414
static class DotNetCampusLatestCSharpFeaturesKeyValuePairExtensions
1515
{
1616
internal static void Deconstruct<TKey, TValue>(this KeyValuePair<TKey, TValue> pair, out TKey key, out TValue value)
17-
where TKey : notnull
1817
{
1918
key = pair.Key;
2019
value = pair.Value;

0 commit comments

Comments
 (0)