From 375163a6fece8b3a57c7555246abe8338223a599 Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Tue, 29 Apr 2008 14:04:55 +0000 Subject: * Spring cleaning. * Added new generic "Location" class to handle 2D integer locations. Going to use it to replace all RegionHandle and X,Y coordinate references throughout the entire project. You have been warned. --- OpenSim/Framework/BlockingQueue.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'OpenSim/Framework/BlockingQueue.cs') 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 return m_queue.Contains(item); } } - + public int Count() { - lock(m_queueSync) - { - return m_queue.Count; - } + lock (m_queueSync) + { + return m_queue.Count; + } } public T[] GetQueueArray() @@ -81,4 +81,4 @@ namespace OpenSim.Framework } } } -} +} \ No newline at end of file -- cgit v1.1