From 5752c1f5c2ee069e2ff5ffc0ff2f186d7454c5c4 Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Wed, 28 May 2008 03:44:49 +0000 Subject: Formatting cleanup. --- OpenSim/Region/Environment/Scenes/Scene.Inventory.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim/Region/Environment/Scenes/Scene.Inventory.cs') diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs index 5e7fd98..f5cb0b9 100644 --- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs @@ -62,7 +62,7 @@ namespace OpenSim.Region.Environment.Scenes public void AddUploadedInventoryItem(LLUUID agentID, InventoryItemBase item) { IMoneyModule money=RequestModuleInterface(); - if(money != null) + if (money != null) { money.ApplyUploadCharge(agentID); } @@ -930,7 +930,7 @@ namespace OpenSim.Region.Environment.Scenes if (part != null) { TaskInventoryItem currentItem=part.GetInventoryItem(itemID); - if(currentItem == null) + if (currentItem == null) { LLUUID copyID = LLUUID.Random(); if (itemID != LLUUID.Zero) @@ -972,9 +972,9 @@ namespace OpenSim.Region.Environment.Scenes } else // Updating existing item with new perms etc { - TaskInventoryItem prevItem=part.GetInventoryItem(itemID); - itemInfo.AssetID = prevItem.AssetID; - if(part.UpdateInventoryItem(itemInfo)) + TaskInventoryItem prevItem=part.GetInventoryItem(itemID); + itemInfo.AssetID = prevItem.AssetID; + if (part.UpdateInventoryItem(itemInfo)) part.GetProperties(remoteClient); } } -- cgit v1.1