diff options
author | Justin Clarke Casey | 2008-05-01 21:22:03 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-05-01 21:22:03 +0000 |
commit | a81edef2b9b32c6697a46f504af679185aab3ceb (patch) | |
tree | 582ee52cc62a01175a6fa693b70c37f36ee2ac19 /OpenSim/Framework/Communications | |
parent | * Refactor: Remove the unused userID parameter that was being passed into alm... (diff) | |
download | opensim-SC_OLD-a81edef2b9b32c6697a46f504af679185aab3ceb.zip opensim-SC_OLD-a81edef2b9b32c6697a46f504af679185aab3ceb.tar.gz opensim-SC_OLD-a81edef2b9b32c6697a46f504af679185aab3ceb.tar.bz2 opensim-SC_OLD-a81edef2b9b32c6697a46f504af679185aab3ceb.tar.xz |
* Refactor: Remove redundant userID from further up the inventory request chain
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/CachedUserInfo.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/Communications/IInventoryServices.cs | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs b/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs index adf01b9..aa27abd 100644 --- a/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs +++ b/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs | |||
@@ -158,7 +158,7 @@ namespace OpenSim.Framework.Communications.Cache | |||
158 | /// </summary> | 158 | /// </summary> |
159 | /// <param name="userID"></param> | 159 | /// <param name="userID"></param> |
160 | /// <param name="inventoryCollection"></param> | 160 | /// <param name="inventoryCollection"></param> |
161 | public void InventoryReceive(LLUUID userID, ICollection<InventoryFolderImpl> folders, ICollection<InventoryItemBase> items) | 161 | public void InventoryReceive(ICollection<InventoryFolderImpl> folders, ICollection<InventoryItemBase> items) |
162 | { | 162 | { |
163 | // FIXME: Exceptions thrown upwards never appear on the console. Could fix further up if these | 163 | // FIXME: Exceptions thrown upwards never appear on the console. Could fix further up if these |
164 | // are simply being swallowed | 164 | // are simply being swallowed |
diff --git a/OpenSim/Framework/Communications/IInventoryServices.cs b/OpenSim/Framework/Communications/IInventoryServices.cs index 5907c38..c8a3c85 100644 --- a/OpenSim/Framework/Communications/IInventoryServices.cs +++ b/OpenSim/Framework/Communications/IInventoryServices.cs | |||
@@ -34,7 +34,8 @@ namespace OpenSim.Framework.Communications | |||
34 | /// <summary> | 34 | /// <summary> |
35 | /// Callback used when a user's inventory is received from the inventory service | 35 | /// Callback used when a user's inventory is received from the inventory service |
36 | /// </summary> | 36 | /// </summary> |
37 | public delegate void InventoryReceiptCallback(LLUUID userId, ICollection<InventoryFolderImpl> folders, ICollection<InventoryItemBase> items); | 37 | public delegate void InventoryReceiptCallback( |
38 | ICollection<InventoryFolderImpl> folders, ICollection<InventoryItemBase> items); | ||
38 | 39 | ||
39 | /// <summary> | 40 | /// <summary> |
40 | /// Defines all the operations one can perform on a user's inventory. | 41 | /// Defines all the operations one can perform on a user's inventory. |