remove workaround comments
authorAndy Ayers <andya@microsoft.com>
Tue, 27 Nov 2018 19:38:56 +0000 (11:38 -0800)
committerAndy Ayers <andya@microsoft.com>
Tue, 27 Nov 2018 19:38:56 +0000 (11:38 -0800)
Commit migrated from https://github.com/dotnet/coreclr/commit/441c3b8af2b80a7550bc3872d1105bca569a7471

src/libraries/System.Private.CoreLib/src/System/Globalization/CharUnicodeInfo.cs

index 575683b..4f51269 100644 (file)
@@ -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.");