Ver código fonte

completes commit 6744423723fbefb0d7913147ccf5c3ec2404eb0f

Martin 14 anos atrás
pai
commit
43abdc0936

+ 1 - 1
mcs/class/System.Web/System.Web.Caching/CacheItemPriorityQueue.cs

@@ -215,7 +215,7 @@ namespace System.Web.Caching
 			int left = startIndex + 1;
 			int right = startIndex + 2;
 			CacheItem item = heap [index], tmpItem;
-			//int maxIndex = heapCount - 1;
+
 			int selected = (right < heapCount && heap [right].ExpiresAt < heap [left].ExpiresAt) ? 2 : 1;
 
 			do {