From 6ef9d4da901a346c232458317cca6268da888e2e Mon Sep 17 00:00:00 2001
From: Jeff Ames
Date: Mon, 18 Aug 2008 00:39:10 +0000
Subject: Formatting cleanup.
---
.../Communications/Cache/InventoryFolderImpl.cs | 34 +++++++++++-----------
1 file changed, 17 insertions(+), 17 deletions(-)
(limited to 'OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs')
diff --git a/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs b/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs
index d7de9d6..61cfc1a 100644
--- a/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs
+++ b/OpenSim/Framework/Communications/Cache/InventoryFolderImpl.cs
@@ -37,19 +37,19 @@ namespace OpenSim.Framework.Communications.Cache
public class InventoryFolderImpl : InventoryFolderBase
{
//private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
-
+
public static readonly string PATH_DELIMITER = "/";
///
/// Items that are contained in this folder
///
public Dictionary Items = new Dictionary();
-
+
///
/// Child folders that are contained in this folder
///
public Dictionary SubFolders = new Dictionary();
-
+
// Constructors
public InventoryFolderImpl(InventoryFolderBase folderbase)
{
@@ -195,15 +195,15 @@ namespace OpenSim.Framework.Communications.Cache
return null;
}
-
+
///
/// Find a folder given a PATH_DELIMITOR delimited path starting from this folder
- ///
+ ///
/// This method does not handle paths that contain multiple delimitors
- ///
+ ///
/// FIXME: We do not yet handle situations where folders have the same name. We could handle this by some
/// XPath like expression
- ///
+ ///
/// FIXME: Delimitors which occur in names themselves are not currently escapable.
///
///
@@ -214,7 +214,7 @@ namespace OpenSim.Framework.Communications.Cache
{
if (path == string.Empty)
return this;
-
+
string[] components = path.Split(new string[] { PATH_DELIMITER }, 2, StringSplitOptions.None);
lock (SubFolders)
@@ -228,19 +228,19 @@ namespace OpenSim.Framework.Communications.Cache
return folder;
}
}
-
+
// We didn't find a folder with the given name
return null;
}
-
+
///
/// Find an item given a PATH_DELIMITOR delimited path starting from this folder.
- ///
+ ///
/// This method does not handle paths that contain multiple delimitors
- ///
+ ///
/// FIXME: We do not yet handle situations where folders or items have the same name. We could handle this by some
/// XPath like expression
- ///
+ ///
/// FIXME: Delimitors which occur in names themselves are not currently escapable.
///
///
@@ -248,7 +248,7 @@ namespace OpenSim.Framework.Communications.Cache
///
/// null if the item is not found
public InventoryItemBase FindItemByPath(string path)
- {
+ {
string[] components = path.Split(new string[] { PATH_DELIMITER }, 2, StringSplitOptions.None);
if (components.Length == 1)
@@ -263,7 +263,7 @@ namespace OpenSim.Framework.Communications.Cache
}
}
else
- {
+ {
lock (SubFolders)
{
foreach (InventoryFolderImpl folder in SubFolders.Values)
@@ -273,10 +273,10 @@ namespace OpenSim.Framework.Communications.Cache
}
}
}
-
+
// We didn't find an item or intermediate folder with the given name
return null;
- }
+ }
///
/// Return a copy of the list of child items in this folder
--
cgit v1.1