From 61e054c722a2ee8d7ccfcdf331108f66cdcbf0f3 Mon Sep 17 00:00:00 2001 From: Andy Ayers Date: Tue, 27 Nov 2018 11:38:56 -0800 Subject: [PATCH] remove workaround comments Commit migrated from https://github.com/dotnet/coreclr/commit/441c3b8af2b80a7550bc3872d1105bca569a7471 --- .../System.Private.CoreLib/src/System/Globalization/CharUnicodeInfo.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/libraries/System.Private.CoreLib/src/System/Globalization/CharUnicodeInfo.cs b/src/libraries/System.Private.CoreLib/src/System/Globalization/CharUnicodeInfo.cs index 575683b..4f51269 100644 --- a/src/libraries/System.Private.CoreLib/src/System/Globalization/CharUnicodeInfo.cs +++ b/src/libraries/System.Private.CoreLib/src/System/Globalization/CharUnicodeInfo.cs @@ -144,8 +144,6 @@ namespace System.Globalization // This is called by the public char and string, index versions // // Note that for ch in the range D800-DFFF we just treat it as any other non-numeric character - // - // Workaround for https://github.com/dotnet/coreclr/issues/21051 internal static double InternalGetNumericValue(int ch) { Debug.Assert(ch >= 0 && ch <= 0x10ffff, "ch is not in valid Unicode range."); @@ -295,7 +293,6 @@ namespace System.Globalization // //////////////////////////////////////////////////////////////////////// - // Workaround for https://github.com/dotnet/coreclr/issues/21051 internal static byte InternalGetCategoryValue(int ch, int offset) { Debug.Assert(ch >= 0 && ch <= 0x10ffff, "ch is not in valid Unicode range."); -- 2.7.4