aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/Rest
diff options
context:
space:
mode:
authorJeff Ames2008-07-06 14:02:22 +0000
committerJeff Ames2008-07-06 14:02:22 +0000
commitd470d30c09fde202f708a9c8af763f5d16e18bfb (patch)
tree6a86572d268dda911a5208bf5be1a1f2c19adc3c /OpenSim/ApplicationPlugins/Rest
parentRemove scripts that don't really belong in OpenSim SVN. (diff)
downloadopensim-SC_OLD-d470d30c09fde202f708a9c8af763f5d16e18bfb.zip
opensim-SC_OLD-d470d30c09fde202f708a9c8af763f5d16e18bfb.tar.gz
opensim-SC_OLD-d470d30c09fde202f708a9c8af763f5d16e18bfb.tar.bz2
opensim-SC_OLD-d470d30c09fde202f708a9c8af763f5d16e18bfb.tar.xz
Copyright notices and formatting cleanup.
Diffstat (limited to 'OpenSim/ApplicationPlugins/Rest')
-rw-r--r--OpenSim/ApplicationPlugins/Rest/Inventory/RequestData.cs2
-rw-r--r--OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs2
-rw-r--r--OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs4
3 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RequestData.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RequestData.cs
index 3de9f36..a885b25 100644
--- a/OpenSim/ApplicationPlugins/Rest/Inventory/RequestData.cs
+++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RequestData.cs
@@ -476,7 +476,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory
476 } 476 }
477 else 477 else
478 { 478 {
479 lock(cntable) cntable.Add(cnonce, nck); 479 lock (cntable) cntable.Add(cnonce, nck);
480 } 480 }
481 481
482 } 482 }
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs
index 0a0bf3f..c351272 100644
--- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs
+++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestHandler.cs
@@ -108,7 +108,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory
108 /// </summary> 108 /// </summary>
109 private void LoadHandlers() 109 private void LoadHandlers()
110 { 110 {
111 lock(handlers) 111 lock (handlers)
112 { 112 {
113 if (!handlersLoaded) 113 if (!handlersLoaded)
114 { 114 {
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
index 780d218..65603c5 100644
--- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
+++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
@@ -238,7 +238,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory
238 Rest.Log.DebugFormat("{0} Inventory catalog requested for {1} {2}", 238 Rest.Log.DebugFormat("{0} Inventory catalog requested for {1} {2}",
239 MsgId, rdata.userProfile.FirstName, rdata.userProfile.SurName); 239 MsgId, rdata.userProfile.FirstName, rdata.userProfile.SurName);
240 240
241 lock(rdata) 241 lock (rdata)
242 { 242 {
243 if (!rdata.HaveInventory) 243 if (!rdata.HaveInventory)
244 { 244 {
@@ -1869,7 +1869,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory
1869 this.folders = folders; 1869 this.folders = folders;
1870 this.items = items; 1870 this.items = items;
1871 this.HaveInventory = true; 1871 this.HaveInventory = true;
1872 lock(this) 1872 lock (this)
1873 { 1873 {
1874 Monitor.Pulse(this); 1874 Monitor.Pulse(this);
1875 } 1875 }