Didn't mean to commit this change in BlockingQueue.cs

This commit is contained in:
Diva Canto
2013-07-17 12:02:00 -07:00
parent 2b8de2c404
commit 0f5b616fb0

View File

@@ -76,7 +76,7 @@ namespace OpenSim.Framework
{
lock (m_queueSync)
{
while (m_queue.Count < 1 && m_pqueue.Count < 1)
if (m_queue.Count < 1 && m_pqueue.Count < 1)
{
Monitor.Wait(m_queueSync, msTimeout);
}