mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
Update svn properties. Formatting cleanup. Remove a compiler warning.
This commit is contained in:
@@ -63,7 +63,7 @@ namespace OpenSim.Framework
|
||||
Monitor.Wait(m_queueSync);
|
||||
}
|
||||
|
||||
if(m_pqueue.Count > 0)
|
||||
if (m_pqueue.Count > 0)
|
||||
return m_pqueue.Dequeue();
|
||||
return m_queue.Dequeue();
|
||||
}
|
||||
@@ -73,7 +73,7 @@ namespace OpenSim.Framework
|
||||
{
|
||||
lock (m_queueSync)
|
||||
{
|
||||
if(m_pqueue.Contains(item))
|
||||
if (m_pqueue.Contains(item))
|
||||
return true;
|
||||
return m_queue.Contains(item);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user