From 87ab32acc8fee37bf3bbb8e4207f33ef6da99b90 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@993157c7-ee19-0410-b2c4-bb4e9862e678> Date: Thu, 26 Jul 2007 06:22:14 +0000 Subject: [PATCH] git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1354 993157c7-ee19-0410-b2c4-bb4e9862e678 --- OpenRa.DataStructures/PriorityQueue.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRa.DataStructures/PriorityQueue.cs b/OpenRa.DataStructures/PriorityQueue.cs index 2c8d610bb0..10266e3b9c 100644 --- a/OpenRa.DataStructures/PriorityQueue.cs +++ b/OpenRa.DataStructures/PriorityQueue.cs @@ -86,7 +86,7 @@ namespace OpenRa return ret; } - public void BubbleInto( int intoLevel, int intoIndex, T val ) + void BubbleInto( int intoLevel, int intoIndex, T val ) { int downLevel = intoLevel + 1; int downIndex = intoIndex << 1;