From 80d8e2889e62d8900837d37a800a4eeaae5ffc5a Mon Sep 17 00:00:00 2001 From: Jeff Ames Date: Wed, 23 Jul 2008 13:24:25 +0000 Subject: Update svn properties. Formatting cleanup. Remove a compiler warning. --- OpenSim/Region/Environment/Scenes/InnerScene.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'OpenSim/Region/Environment/Scenes/InnerScene.cs') diff --git a/OpenSim/Region/Environment/Scenes/InnerScene.cs b/OpenSim/Region/Environment/Scenes/InnerScene.cs index 399cbf6..7df70a0 100644 --- a/OpenSim/Region/Environment/Scenes/InnerScene.cs +++ b/OpenSim/Region/Environment/Scenes/InnerScene.cs @@ -1365,7 +1365,7 @@ namespace OpenSim.Region.Environment.Scenes // We need to explicitly resend the newly link prim's object properties since no other actions // occur on link to invoke this elsewhere (such as object selection) parenPrim.TriggerScriptChangedEvent(Changed.LINK); - if(client != null) + if (client != null) parenPrim.GetProperties(client); else { @@ -1426,13 +1426,13 @@ namespace OpenSim.Region.Environment.Scenes parenPrim.DelinkFromGroup(childPrimId, sendEvents); } - if(parenPrim.Children.Count == 1) + if (parenPrim.Children.Count == 1) { // The link set has been completely torn down // This is the case if you select a link set and delink // parenPrim.RootPart.LinkNum = 1; - if(sendEvents) + if (sendEvents) parenPrim.TriggerScriptChangedEvent(Changed.LINK); } else @@ -1449,7 +1449,7 @@ namespace OpenSim.Region.Environment.Scenes // Tear down the remaining link set // - if(unlink_ids.Count == 2) + if (unlink_ids.Count == 2) { DelinkObjects(unlink_ids, true); return; @@ -1494,7 +1494,7 @@ namespace OpenSim.Region.Environment.Scenes { grp.DelinkFromGroup(primIds[i]); delinkedSomething = true; - if(!parents.Contains(grp)) + if (!parents.Contains(grp)) parents.Add(grp); } -- cgit v1.1