From 3f79e6b3e766aa508858ee3fcec6f9b6403a35fc Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Tue, 23 Sep 2008 23:14:00 +0000 Subject: Update svn properties, formatting cleanup. --- .../Rest/Inventory/RestAppearanceServices.cs | 4 ++-- .../ApplicationPlugins/Rest/Inventory/RestAssetServices.cs | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'OpenSim/ApplicationPlugins/Rest') diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestAppearanceServices.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestAppearanceServices.cs index 8db3fde..82c0c2b 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestAppearanceServices.cs +++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestAppearanceServices.cs @@ -397,8 +397,8 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory if (rdata.userAppearance != null) { - modified = true; - Rest.AvatarServices.UpdateUserAppearance(rdata.userProfile.ID, rdata.userAppearance); + modified = true; + Rest.AvatarServices.UpdateUserAppearance(rdata.userProfile.ID, rdata.userAppearance); } if (created) diff --git a/OpenSim/ApplicationPlugins/Rest/Inventory/RestAssetServices.cs b/OpenSim/ApplicationPlugins/Rest/Inventory/RestAssetServices.cs index dcd209f..9af5cd0 100644 --- a/OpenSim/ApplicationPlugins/Rest/Inventory/RestAssetServices.cs +++ b/OpenSim/ApplicationPlugins/Rest/Inventory/RestAssetServices.cs @@ -248,8 +248,8 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory private void DoPut(AssetRequestData rdata) { - bool modified = false; - bool created = false; + bool modified = false; + bool created = false; Rest.Log.DebugFormat("{0} REST Asset handler, Method = <{1}> ENTRY", MsgId, rdata.method); @@ -269,7 +269,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory AssetBase asset = Rest.AssetServices.GetAsset(uuid, false); modified = (asset != null); - created = !modified; + created = !modified; asset = new AssetBase(); asset.FullID = uuid; @@ -283,7 +283,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory if (asset.ID != rdata.Parameters[0]) { Rest.Log.WarnFormat("{0} URI and payload disagree on UUID U:{1} vs P:{2}", - MsgId, rdata.Parameters[0], asset.ID); + MsgId, rdata.Parameters[0], asset.ID); } Rest.AssetServices.AddAsset(asset); @@ -323,8 +323,8 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory private void DoPost(AssetRequestData rdata) { - bool modified = false; - bool created = false; + bool modified = false; + bool created = false; Rest.Log.DebugFormat("{0} REST Asset handler, Method = <{1}> ENTRY", MsgId, rdata.method); @@ -347,7 +347,7 @@ namespace OpenSim.ApplicationPlugins.Rest.Inventory AssetBase asset = Rest.AssetServices.GetAsset(uuid, false); modified = (asset != null); - created = !modified; + created = !modified; asset = new AssetBase(); asset.FullID = uuid; -- cgit v1.1