diff options
author | Jeff Ames | 2008-05-16 01:22:11 +0000 |
---|---|---|
committer | Jeff Ames | 2008-05-16 01:22:11 +0000 |
commit | 65c5efe43b68700bad94076d4cd421160203c5de (patch) | |
tree | 589b56649ed02f4942671fd6e51c6dc43f682e0d /OpenSim/Region/Communications/Local/LocalInventoryService.cs | |
parent | Thank you very much, mjm for : (diff) | |
download | opensim-SC-65c5efe43b68700bad94076d4cd421160203c5de.zip opensim-SC-65c5efe43b68700bad94076d4cd421160203c5de.tar.gz opensim-SC-65c5efe43b68700bad94076d4cd421160203c5de.tar.bz2 opensim-SC-65c5efe43b68700bad94076d4cd421160203c5de.tar.xz |
Formatting cleanup.
Diffstat (limited to 'OpenSim/Region/Communications/Local/LocalInventoryService.cs')
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalInventoryService.cs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalInventoryService.cs b/OpenSim/Region/Communications/Local/LocalInventoryService.cs index 3d87007..4f60462 100644 --- a/OpenSim/Region/Communications/Local/LocalInventoryService.cs +++ b/OpenSim/Region/Communications/Local/LocalInventoryService.cs | |||
@@ -37,20 +37,20 @@ namespace OpenSim.Region.Communications.Local | |||
37 | { | 37 | { |
38 | /// <summary> | 38 | /// <summary> |
39 | /// An implementation of user inventory where the inventory is held locally (e.g. when OpenSim is | 39 | /// An implementation of user inventory where the inventory is held locally (e.g. when OpenSim is |
40 | /// operating in standalone mode. | 40 | /// operating in standalone mode. |
41 | /// </summary> | 41 | /// </summary> |
42 | public class LocalInventoryService : InventoryServiceBase | 42 | public class LocalInventoryService : InventoryServiceBase |
43 | { | 43 | { |
44 | private static readonly ILog m_log | 44 | private static readonly ILog m_log |
45 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 45 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
46 | 46 | ||
47 | public override void RequestInventoryForUser(LLUUID userID, InventoryReceiptCallback callback) | 47 | public override void RequestInventoryForUser(LLUUID userID, InventoryReceiptCallback callback) |
48 | { | 48 | { |
49 | m_log.InfoFormat("[LOCAL INVENTORY SERVICE]: Requesting inventory for user {0}", userID); | 49 | m_log.InfoFormat("[LOCAL INVENTORY SERVICE]: Requesting inventory for user {0}", userID); |
50 | 50 | ||
51 | List<InventoryFolderBase> skeletonFolders = GetInventorySkeleton(userID); | 51 | List<InventoryFolderBase> skeletonFolders = GetInventorySkeleton(userID); |
52 | InventoryFolderImpl rootFolder = null; | 52 | InventoryFolderImpl rootFolder = null; |
53 | 53 | ||
54 | List<InventoryFolderImpl> folders = new List<InventoryFolderImpl>(); | 54 | List<InventoryFolderImpl> folders = new List<InventoryFolderImpl>(); |
55 | List<InventoryItemBase> items = new List<InventoryItemBase>(); | 55 | List<InventoryItemBase> items = new List<InventoryItemBase>(); |
56 | 56 | ||
@@ -76,11 +76,11 @@ namespace OpenSim.Region.Communications.Local | |||
76 | } | 76 | } |
77 | } | 77 | } |
78 | } | 78 | } |
79 | 79 | ||
80 | m_log.InfoFormat( | 80 | m_log.InfoFormat( |
81 | "[LOCAL INVENTORY SERVICE]: Received inventory response for user {0} containing {1} folders and {2} items", | 81 | "[LOCAL INVENTORY SERVICE]: Received inventory response for user {0} containing {1} folders and {2} items", |
82 | userID, folders.Count, items.Count); | 82 | userID, folders.Count, items.Count); |
83 | 83 | ||
84 | callback(folders, items); | 84 | callback(folders, items); |
85 | } | 85 | } |
86 | 86 | ||