Remove unused const in ArraySortHelper
authorStephen Toub <stoub@microsoft.com>
Sun, 12 Feb 2017 21:02:32 +0000 (16:02 -0500)
committerStephen Toub <stoub@microsoft.com>
Sun, 12 Feb 2017 21:02:32 +0000 (16:02 -0500)
src/mscorlib/src/System/Collections/Generic/ArraySortHelper.cs

index 298ac3e..0f4a2b9 100644 (file)
@@ -36,8 +36,6 @@ namespace System.Collections.Generic
         // Large value types may benefit from a smaller number.
         internal const int IntrosortSizeThreshold = 16;
 
-        internal const int QuickSortDepthThreshold = 32;
-
         internal static int FloorLog2(int n)
         {
             int result = 0;