Undo accidental 2.0 -> 2.1 renames (dotnet/corertdotnet/coreclr#5981)
authorJan Kotas <jkotas@microsoft.com>
Thu, 21 Jun 2018 03:38:07 +0000 (20:38 -0700)
committerJan Kotas <jkotas@microsoft.com>
Thu, 21 Jun 2018 03:41:03 +0000 (20:41 -0700)
Signed-off-by: dotnet-bot <dotnet-bot@microsoft.com>
Commit migrated from https://github.com/dotnet/coreclr/commit/3e87306d8e8b909aaa26582fa11cb30e52e9431e

src/libraries/System.Private.CoreLib/src/System/Collections/Generic/NonRandomizedStringEqualityComparer.cs

index b9abb35..e7efa22 100644 (file)
@@ -10,7 +10,7 @@ namespace System.Collections.Generic
     // We use NonRandomizedStringEqualityComparer as default comparer as it doesnt use the randomized string hashing which 
     // keeps the performance not affected till we hit collision threshold and then we switch to the comparer which is using 
     // randomized string hashing.
-    [Serializable] // Required for compatibility with .NET Core 2.1 as we exposed the NonRandomizedStringEqualityComparer inside the serialization blob
+    [Serializable] // Required for compatibility with .NET Core 2.0 as we exposed the NonRandomizedStringEqualityComparer inside the serialization blob
     // Needs to be public to support binary serialization compatibility
     public sealed class NonRandomizedStringEqualityComparer : EqualityComparer<string>, ISerializable
     {