summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/Internal
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2019-06-12 11:00:51 -0400
committerStephen Toub <stoub@microsoft.com>2019-06-12 17:43:02 -0400
commit4f86404677771a4d29324f258a4a2de8292515eb (patch)
tree39d225da432353c51862720510b74baffe34ce34 /src/System.Private.CoreLib/shared/Internal
parent6f4567a592c5c020143414dbd6bd9975b25746ee (diff)
downloadcoreclr-4f86404677771a4d29324f258a4a2de8292515eb.tar.gz
coreclr-4f86404677771a4d29324f258a4a2de8292515eb.tar.bz2
coreclr-4f86404677771a4d29324f258a4a2de8292515eb.zip
Remove defunct !s and update some TODO-NULLABLE comments
Diffstat (limited to 'src/System.Private.CoreLib/shared/Internal')
-rw-r--r--src/System.Private.CoreLib/shared/Internal/Win32/RegistryKey.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/shared/Internal/Win32/RegistryKey.cs b/src/System.Private.CoreLib/shared/Internal/Win32/RegistryKey.cs
index 912ddceef3..6f4c31255c 100644
--- a/src/System.Private.CoreLib/shared/Internal/Win32/RegistryKey.cs
+++ b/src/System.Private.CoreLib/shared/Internal/Win32/RegistryKey.cs
@@ -418,7 +418,7 @@ namespace Internal.Win32
{
Array.Resize(ref strings!, stringsCount > 0 ? stringsCount * 2 : 4); // TODO-NULLABLE: Remove ! when nullable attributes are respected
}
- strings![stringsCount++] = toAdd; // TODO-NULLABLE: Remove ! when nullable attributes are respected
+ strings[stringsCount++] = toAdd;
}
}