Update svn properties. Formatting cleanup. Remove a compiler warning.

This commit is contained in:
Jeff Ames
2008-07-23 13:24:25 +00:00
parent 9e8b456bbc
commit 80d8e2889e
29 changed files with 402 additions and 396 deletions

View File

@@ -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);
}