From 7a6f387abae49190a2dc1e923b6333a5cbb65a62 Mon Sep 17 00:00:00 2001 From: James Ko Date: Wed, 6 Jul 2016 03:06:32 -0400 Subject: [PATCH] Remove unused static field from Uri Commit migrated from https://github.com/dotnet/corefx/commit/8723a1cf812670734579872cf8123f1f422b5a64 --- src/libraries/System.Private.Uri/src/System/Uri.cs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/libraries/System.Private.Uri/src/System/Uri.cs b/src/libraries/System.Private.Uri/src/System/Uri.cs index c1a6b66..3a5549c 100644 --- a/src/libraries/System.Private.Uri/src/System/Uri.cs +++ b/src/libraries/System.Private.Uri/src/System/Uri.cs @@ -4752,12 +4752,6 @@ namespace System return dest; } - //used by DigestClient - internal static readonly char[] HexLowerChars = { - '0', '1', '2', '3', '4', '5', '6', '7', - '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' - }; - internal static int CalculateCaseInsensitiveHashCode(string text) { return text.ToLowerInvariant().GetHashCode(); -- 2.7.4