aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/Local
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-05-01 21:22:03 +0000
committerJustin Clarke Casey2008-05-01 21:22:03 +0000
commita81edef2b9b32c6697a46f504af679185aab3ceb (patch)
tree582ee52cc62a01175a6fa693b70c37f36ee2ac19 /OpenSim/Region/Communications/Local
parent* Refactor: Remove the unused userID parameter that was being passed into alm... (diff)
downloadopensim-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/Region/Communications/Local')
-rw-r--r--OpenSim/Region/Communications/Local/LocalInventoryService.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalInventoryService.cs b/OpenSim/Region/Communications/Local/LocalInventoryService.cs
index 80108e3..9e63fbf 100644
--- a/OpenSim/Region/Communications/Local/LocalInventoryService.cs
+++ b/OpenSim/Region/Communications/Local/LocalInventoryService.cs
@@ -77,7 +77,11 @@ namespace OpenSim.Region.Communications.Local
77 } 77 }
78 } 78 }
79 79
80 callback(userID, folders, items); 80 m_log.InfoFormat(
81 "[LOCAL1 INVENTORY SERVICE]: Received inventory response for user {0} containing {1} folders and {2} items",
82 userID, folders.Count, items.Count);
83
84 callback(folders, items);
81 } 85 }
82 86
83 public override bool HasInventoryForUser(LLUUID userID) 87 public override bool HasInventoryForUser(LLUUID userID)