* Refactor: Remove redundant userID from further up the inventory request chain

This commit is contained in:
Justin Clarke Casey
2008-05-01 21:22:03 +00:00
parent 1de6cffa28
commit a81edef2b9
4 changed files with 13 additions and 23 deletions

View File

@@ -158,7 +158,7 @@ namespace OpenSim.Framework.Communications.Cache
/// </summary>
/// <param name="userID"></param>
/// <param name="inventoryCollection"></param>
public void InventoryReceive(LLUUID userID, ICollection<InventoryFolderImpl> folders, ICollection<InventoryItemBase> items)
public void InventoryReceive(ICollection<InventoryFolderImpl> folders, ICollection<InventoryItemBase> items)
{
// FIXME: Exceptions thrown upwards never appear on the console. Could fix further up if these
// are simply being swallowed

View File

@@ -34,7 +34,8 @@ namespace OpenSim.Framework.Communications
/// <summary>
/// Callback used when a user's inventory is received from the inventory service
/// </summary>
public delegate void InventoryReceiptCallback(LLUUID userId, ICollection<InventoryFolderImpl> folders, ICollection<InventoryItemBase> items);
public delegate void InventoryReceiptCallback(
ICollection<InventoryFolderImpl> folders, ICollection<InventoryItemBase> items);
/// <summary>
/// Defines all the operations one can perform on a user's inventory.