minor: remove mono compiler warnings

This commit is contained in:
Justin Clark-Casey (justincc)
2011-07-16 02:56:54 +01:00
parent 27fae36a21
commit 2b339b7d2b
3 changed files with 7 additions and 4 deletions

View File

@@ -810,18 +810,20 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
//
if (((item.CurrentPermissions & (uint)PermissionMask.Copy) == 0) && (!attachment))
remoteClient.SendBulkUpdateInventory(item);
return null;
}
for (int i = 0 ; i < objlist.Count ; i++ )
for (int i = 0 ; i < objlist.Count; i++)
{
group = objlist[i];
Vector3 storedPosition = group.AbsolutePosition;
// Vector3 storedPosition = group.AbsolutePosition;
if (group.UUID == UUID.Zero)
{
m_log.Debug("[InventoryAccessModule]: Inventory object has UUID.Zero! Position 3");
}
group.RootPart.FromFolderID = item.Folder;
// If it's rezzed in world, select it. Much easier to
@@ -833,6 +835,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
foreach (SceneObjectPart child in group.Parts)
child.CreateSelected = true;
}
group.ResetIDs();
if (attachment)