summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/System/String.Manipulation.cs
diff options
context:
space:
mode:
authorSantiago Fernandez Madero <safern@microsoft.com>2019-05-24 11:54:56 -0700
committerSantiago Fernandez Madero <safern@microsoft.com>2019-05-24 11:54:56 -0700
commit06de1100c25eb38e94334054b7176f1baf7e1263 (patch)
treed50c75be6caa0ddaf7f19f0f968eecb844bd9056 /src/System.Private.CoreLib/shared/System/String.Manipulation.cs
parent7a60974599a3ca78e354b391afc23b56af294008 (diff)
downloadcoreclr-06de1100c25eb38e94334054b7176f1baf7e1263.tar.gz
coreclr-06de1100c25eb38e94334054b7176f1baf7e1263.tar.bz2
coreclr-06de1100c25eb38e94334054b7176f1baf7e1263.zip
Fix nullable annotation in String.Join
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/String.Manipulation.cs')
-rw-r--r--src/System.Private.CoreLib/shared/System/String.Manipulation.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/System.Private.CoreLib/shared/System/String.Manipulation.cs b/src/System.Private.CoreLib/shared/System/String.Manipulation.cs
index 75d72dc50b..d5636410b7 100644
--- a/src/System.Private.CoreLib/shared/System/String.Manipulation.cs
+++ b/src/System.Private.CoreLib/shared/System/String.Manipulation.cs
@@ -626,7 +626,7 @@ namespace System
}
}
- public static string Join(string? separator, IEnumerable<string> values)
+ public static string Join(string? separator, IEnumerable<string?> values)
{
if (values == null)
{