diff options
author | Justin Clarke Casey | 2008-04-30 19:08:48 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-04-30 19:08:48 +0000 |
commit | 9817363b9340cb4f918f4e1ca0690f112691113c (patch) | |
tree | fd74b1be0145191f72b9d5800a569e2e9ea76bc2 /OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs | |
parent | add a bunch of properties for User Appearance (diff) | |
download | opensim-SC-9817363b9340cb4f918f4e1ca0690f112691113c.zip opensim-SC-9817363b9340cb4f918f4e1ca0690f112691113c.tar.gz opensim-SC-9817363b9340cb4f918f4e1ca0690f112691113c.tar.bz2 opensim-SC-9817363b9340cb4f918f4e1ca0690f112691113c.tar.xz |
* Completely inconsequential inventory odds and ends (actual impact - only one log message changed)
Diffstat (limited to 'OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs')
-rw-r--r-- | OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs b/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs index 33d820d..5f532e0 100644 --- a/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs +++ b/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs | |||
@@ -26,12 +26,17 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | using System.Collections.Generic; | 28 | using System.Collections.Generic; |
29 | //using System.Reflection; | ||
30 | |||
29 | using libsecondlife; | 31 | using libsecondlife; |
32 | //using log4net; | ||
30 | 33 | ||
31 | namespace OpenSim.Framework.Communications.Cache | 34 | namespace OpenSim.Framework.Communications.Cache |
32 | { | 35 | { |
33 | public class InventoryFolderImpl : InventoryFolderBase | 36 | public class InventoryFolderImpl : InventoryFolderBase |
34 | { | 37 | { |
38 | //private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
39 | |||
35 | // Fields | 40 | // Fields |
36 | public Dictionary<LLUUID, InventoryItemBase> Items = new Dictionary<LLUUID, InventoryItemBase>(); | 41 | public Dictionary<LLUUID, InventoryItemBase> Items = new Dictionary<LLUUID, InventoryItemBase>(); |
37 | public Dictionary<LLUUID, InventoryFolderImpl> SubFolders = new Dictionary<LLUUID, InventoryFolderImpl>(); | 42 | public Dictionary<LLUUID, InventoryFolderImpl> SubFolders = new Dictionary<LLUUID, InventoryFolderImpl>(); |
@@ -200,6 +205,8 @@ namespace OpenSim.Framework.Communications.Cache | |||
200 | } | 205 | } |
201 | } | 206 | } |
202 | 207 | ||
208 | //m_log.DebugFormat("[INVENTORY FOLDER IMPL]: Found {0} items", itemList.Count); | ||
209 | |||
203 | return itemList; | 210 | return itemList; |
204 | } | 211 | } |
205 | 212 | ||