aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/BlockingQueue.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/BlockingQueue.cs')
-rw-r--r--OpenSim/Framework/BlockingQueue.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Framework/BlockingQueue.cs b/OpenSim/Framework/BlockingQueue.cs
index dbb3d84..345b361 100644
--- a/OpenSim/Framework/BlockingQueue.cs
+++ b/OpenSim/Framework/BlockingQueue.cs
@@ -64,13 +64,13 @@ namespace OpenSim.Framework
64 return m_queue.Contains(item); 64 return m_queue.Contains(item);
65 } 65 }
66 } 66 }
67 67
68 public int Count() 68 public int Count()
69 { 69 {
70 lock(m_queueSync) 70 lock (m_queueSync)
71 { 71 {
72 return m_queue.Count; 72 return m_queue.Count;
73 } 73 }
74 } 74 }
75 75
76 public T[] GetQueueArray() 76 public T[] GetQueueArray()
@@ -81,4 +81,4 @@ namespace OpenSim.Framework
81 } 81 }
82 } 82 }
83 } 83 }
84} 84} \ No newline at end of file