diff options
author | Justin Clarke Casey | 2008-04-11 18:19:21 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-04-11 18:19:21 +0000 |
commit | 649f304e764784d08f8a79729f70f66972c52c56 (patch) | |
tree | 54c0c4e43e5bdd70e860fc7338a68711770f1e4a /OpenSim/Framework | |
parent | * Change inventory async response deliver to deliver all items and folders at... (diff) | |
download | opensim-SC_OLD-649f304e764784d08f8a79729f70f66972c52c56.zip opensim-SC_OLD-649f304e764784d08f8a79729f70f66972c52c56.tar.gz opensim-SC_OLD-649f304e764784d08f8a79729f70f66972c52c56.tar.bz2 opensim-SC_OLD-649f304e764784d08f8a79729f70f66972c52c56.tar.xz |
* Minor inventory code cleanup following on from last patch
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/CachedUserInfo.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/Communications/IInventoryServices.cs | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs b/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs index cf701cb..d97cf01 100644 --- a/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs +++ b/OpenSim/Framework/Communications/Cache/CachedUserInfo.cs | |||
@@ -200,7 +200,7 @@ namespace OpenSim.Framework.Communications.Cache | |||
200 | /// <summary> | 200 | /// <summary> |
201 | /// Callback invoked when an item is received from an async request to the inventory service. | 201 | /// Callback invoked when an item is received from an async request to the inventory service. |
202 | /// | 202 | /// |
203 | /// FIXME: We're assuming here that items are always received after all the folders have been | 203 | /// We're assuming here that items are always received after all the folders have been |
204 | /// received. | 204 | /// received. |
205 | /// </summary> | 205 | /// </summary> |
206 | /// <param name="userID"></param> | 206 | /// <param name="userID"></param> |
diff --git a/OpenSim/Framework/Communications/IInventoryServices.cs b/OpenSim/Framework/Communications/IInventoryServices.cs index 40e7ffd..5e7f855 100644 --- a/OpenSim/Framework/Communications/IInventoryServices.cs +++ b/OpenSim/Framework/Communications/IInventoryServices.cs | |||
@@ -37,10 +37,6 @@ namespace OpenSim.Framework.Communications | |||
37 | /// Callback used when a user's inventory is received from the inventory service | 37 | /// Callback used when a user's inventory is received from the inventory service |
38 | /// </summary> | 38 | /// </summary> |
39 | public delegate void InventoryReceiptCallback(LLUUID userId, ICollection<InventoryFolderImpl> folders, ICollection<InventoryItemBase> items); | 39 | public delegate void InventoryReceiptCallback(LLUUID userId, ICollection<InventoryFolderImpl> folders, ICollection<InventoryItemBase> items); |
40 | |||
41 | //public delegate void InventoryFolderInfo(LLUUID userID, InventoryFolderImpl folderInfo); | ||
42 | |||
43 | //public delegate void InventoryItemInfo(LLUUID userID, InventoryItemBase itemInfo); | ||
44 | 40 | ||
45 | /// <summary> | 41 | /// <summary> |
46 | /// Defines all the operations one can perform on a user's inventory. | 42 | /// Defines all the operations one can perform on a user's inventory. |