summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2019-06-13 10:03:40 -0400
committerStephen Toub <stoub@microsoft.com>2019-06-13 23:38:44 -0400
commit64ca544ecf55490675e72b853e98ebc8cc75a4fe (patch)
tree7b6b0fdc0bb2302ca93bb0704a624d17d709fd0e /src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs
parente783e68adf65090eb4c701bfccb53294b8a0a596 (diff)
downloadcoreclr-64ca544ecf55490675e72b853e98ebc8cc75a4fe.tar.gz
coreclr-64ca544ecf55490675e72b853e98ebc8cc75a4fe.tar.bz2
coreclr-64ca544ecf55490675e72b853e98ebc8cc75a4fe.zip
Update Corelib to adapt to compiler nullability updates
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs b/src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs
index fbd6ac7cee..fc4d875289 100644
--- a/src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs
+++ b/src/System.Private.CoreLib/shared/System/Collections/Generic/Dictionary.cs
@@ -675,7 +675,7 @@ namespace System.Collections.Generic
public virtual void OnDeserialization(object? sender)
{
- HashHelpers.SerializationInfoTable.TryGetValue(this, out SerializationInfo siInfo);
+ HashHelpers.SerializationInfoTable.TryGetValue(this, out SerializationInfo? siInfo);
if (siInfo == null)
{