From: Jan Kotas Date: Thu, 21 Jun 2018 03:38:07 +0000 (-0700) Subject: Undo accidental 2.0 -> 2.1 renames (dotnet/corertdotnet/coreclr#5981) X-Git-Tag: submit/tizen/20210909.063632~11030^2~4549 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=07e7e500ff2d2c87ae6e79bb01f6e772a0292e79;p=platform%2Fupstream%2Fdotnet%2Fruntime.git Undo accidental 2.0 -> 2.1 renames (dotnet/corertdotnet/coreclr#5981) Signed-off-by: dotnet-bot Commit migrated from https://github.com/dotnet/coreclr/commit/3e87306d8e8b909aaa26582fa11cb30e52e9431e --- diff --git a/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/NonRandomizedStringEqualityComparer.cs b/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/NonRandomizedStringEqualityComparer.cs index b9abb35..e7efa22 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/NonRandomizedStringEqualityComparer.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Collections/Generic/NonRandomizedStringEqualityComparer.cs @@ -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, ISerializable {