aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
diff options
context:
space:
mode:
authorJeff Ames2008-09-18 16:07:06 +0000
committerJeff Ames2008-09-18 16:07:06 +0000
commitac083becd96c5966e412f94696eab38250d9c179 (patch)
tree5cfa5f1829a7f566d0cb8f15df123b679047e335 /OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
parentcode formatting cleanup. (diff)
downloadopensim-SC_OLD-ac083becd96c5966e412f94696eab38250d9c179.zip
opensim-SC_OLD-ac083becd96c5966e412f94696eab38250d9c179.tar.gz
opensim-SC_OLD-ac083becd96c5966e412f94696eab38250d9c179.tar.bz2
opensim-SC_OLD-ac083becd96c5966e412f94696eab38250d9c179.tar.xz
Update svn properties, minor formatting cleanup.
Diffstat (limited to 'OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs')
-rw-r--r--OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
index 6791cba..0aad058 100644
--- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
+++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestInventoryServices.cs
@@ -66,9 +66,9 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory
66 66
67 if (!qPrefix.StartsWith(Rest.UrlPathSeparator)) 67 if (!qPrefix.StartsWith(Rest.UrlPathSeparator))
68 { 68 {
69 Rest.Log.InfoFormat("{0} Domain is relative, adding absolute prefix", MsgId); 69 Rest.Log.InfoFormat("{0} Domain is relative, adding absolute prefix", MsgId);
70 qPrefix = String.Format("{0}{1}{2}", Rest.Prefix, Rest.UrlPathSeparator, qPrefix); 70 qPrefix = String.Format("{0}{1}{2}", Rest.Prefix, Rest.UrlPathSeparator, qPrefix);
71 Rest.Log.InfoFormat("{0} Domain is now <{1}>", MsgId, qPrefix); 71 Rest.Log.InfoFormat("{0} Domain is now <{1}>", MsgId, qPrefix);
72 } 72 }
73 73
74 // Register interface using the absolute URI. 74 // Register interface using the absolute URI.
@@ -331,9 +331,9 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory
331 331
332 default : 332 default :
333 Rest.Log.WarnFormat("{0} Method {1} not supported for {2}", 333 Rest.Log.WarnFormat("{0} Method {1} not supported for {2}",
334 MsgId, rdata.method, rdata.path); 334 MsgId, rdata.method, rdata.path);
335 rdata.Fail(Rest.HttpStatusCodeMethodNotAllowed, 335 rdata.Fail(Rest.HttpStatusCodeMethodNotAllowed,
336 String.Format("{0} not supported", rdata.method)); 336 String.Format("{0} not supported", rdata.method));
337 break; 337 break;
338 } 338 }
339 } 339 }