remove redundant lock

avinationmerge
UbitUmarov 2014-09-21 23:39:50 +01:00
parent a70ed79c39
commit e25849e1c4
1 changed files with 2 additions and 1 deletions

View File

@ -308,7 +308,8 @@ namespace OpenSim.Data.MySQL
/// <param name="uuid">the Item UUID</param>
private void RemoveItems(UUID uuid)
{
lock (m_dbLock)
// locked by caller
// lock (m_dbLock)
{
using (MySqlConnection dbcon = new MySqlConnection(m_connectionString))
{