Correct build break in previous commit 9c530d7
parent
9c530d725f
commit
42b0c68eab
|
@ -102,7 +102,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.UserProfiles
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets or sets a value indicating whether this
|
/// Gets or sets a value indicating whether this
|
||||||
/// <see cref="BlueWall.SlipStream.ProfileModule.UserProfileModule"/> is enabled.
|
/// <see cref="OpenSim.Region.Coremodules.UserProfiles.UserProfileModule"/> is enabled.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>
|
/// <value>
|
||||||
/// <c>true</c> if enabled; otherwise, <c>false</c>.
|
/// <c>true</c> if enabled; otherwise, <c>false</c>.
|
||||||
|
@ -331,16 +331,14 @@ namespace OpenSim.Region.OptionalModules.Avatar.UserProfiles
|
||||||
|
|
||||||
classifieds[cid] = name;
|
classifieds[cid] = name;
|
||||||
|
|
||||||
lock(m_classifiedCache)
|
|
||||||
{
|
|
||||||
if (!m_classifiedCache.ContainsKey(cid))
|
if (!m_classifiedCache.ContainsKey(cid))
|
||||||
{
|
{
|
||||||
|
lock(m_classifiedCache)
|
||||||
m_classifiedCache.Add(cid,creatorId);
|
m_classifiedCache.Add(cid,creatorId);
|
||||||
|
|
||||||
lock(m_classifiedInterest)
|
lock(m_classifiedInterest)
|
||||||
m_classifiedInterest.Add(cid, 0);
|
m_classifiedInterest.Add(cid, 0);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
lock(m_classifiedInterest)
|
lock(m_classifiedInterest)
|
||||||
m_classifiedInterest[cid]++;
|
m_classifiedInterest[cid]++;
|
||||||
|
@ -355,7 +353,6 @@ namespace OpenSim.Region.OptionalModules.Avatar.UserProfiles
|
||||||
UserClassifiedAdd ad = new UserClassifiedAdd();
|
UserClassifiedAdd ad = new UserClassifiedAdd();
|
||||||
ad.ClassifiedId = queryClassifiedID;
|
ad.ClassifiedId = queryClassifiedID;
|
||||||
|
|
||||||
lock (classifie
|
|
||||||
if (m_classifiedCache.ContainsKey(queryClassifiedID))
|
if (m_classifiedCache.ContainsKey(queryClassifiedID))
|
||||||
{
|
{
|
||||||
target = m_classifiedCache[queryClassifiedID];
|
target = m_classifiedCache[queryClassifiedID];
|
||||||
|
|
Loading…
Reference in New Issue