Copyright notices and formatting cleanup.

This commit is contained in:
Jeff Ames
2008-07-06 14:02:22 +00:00
parent 34cac351cb
commit d470d30c09
22 changed files with 991 additions and 887 deletions

View File

@@ -476,7 +476,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory
}
else
{
lock(cntable) cntable.Add(cnonce, nck);
lock (cntable) cntable.Add(cnonce, nck);
}
}

View File

@@ -108,7 +108,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory
/// </summary>
private void LoadHandlers()
{
lock(handlers)
lock (handlers)
{
if (!handlersLoaded)
{

View File

@@ -238,7 +238,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory
Rest.Log.DebugFormat("{0} Inventory catalog requested for {1} {2}",
MsgId, rdata.userProfile.FirstName, rdata.userProfile.SurName);
lock(rdata)
lock (rdata)
{
if (!rdata.HaveInventory)
{
@@ -1869,7 +1869,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory
this.folders = folders;
this.items = items;
this.HaveInventory = true;
lock(this)
lock (this)
{
Monitor.Pulse(this);
}