aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/PriorityQueue.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/PriorityQueue.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Framework/PriorityQueue.cs b/OpenSim/Framework/PriorityQueue.cs
index eec2a92..ea718c4 100644
--- a/OpenSim/Framework/PriorityQueue.cs
+++ b/OpenSim/Framework/PriorityQueue.cs
@@ -174,14 +174,13 @@ namespace OpenSim.Framework
174 } 174 }
175 } 175 }
176 176
177 /// <summary>
178 /// </summary>
177 public override string ToString() 179 public override string ToString()
178 { 180 {
179 string s = ""; 181 string s = "";
180 for (int i = 0; i < NumberOfQueues; i++) 182 for (int i = 0; i < NumberOfQueues; i++)
181 { 183 s += String.Format("{0,7} ",m_heaps[i].Count);
182 if (s != "") s += ",";
183 s += m_heaps[i].Count.ToString();
184 }
185 return s; 184 return s;
186 } 185 }
187 186