* 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.
This commit is contained in:
Adam Frisby
2008-04-29 14:04:55 +00:00
parent 9907c0fd10
commit 375163a6fe
64 changed files with 1283 additions and 1475 deletions

View File

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