mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
* Refactor: Remove redundant userID from further up the inventory request chain
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user