mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
* refactor: eliminate unused SubFoldersCount
This commit is contained in:
@@ -49,15 +49,7 @@ namespace OpenSim.Framework.Communications.Cache
|
||||
/// Child folders that are contained in this folder
|
||||
/// </summary>
|
||||
public Dictionary<LLUUID, InventoryFolderImpl> SubFolders = new Dictionary<LLUUID, InventoryFolderImpl>();
|
||||
|
||||
/// <summary>
|
||||
/// The number of child folders
|
||||
/// </summary>
|
||||
public int SubFoldersCount
|
||||
{
|
||||
get { return SubFolders.Count; }
|
||||
}
|
||||
|
||||
|
||||
// Constructors
|
||||
public InventoryFolderImpl(InventoryFolderBase folderbase)
|
||||
{
|
||||
@@ -244,7 +236,7 @@ namespace OpenSim.Framework.Communications.Cache
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Return the list of child items in this folder
|
||||
/// Return a copy of the list of child items in this folder
|
||||
/// </summary>
|
||||
public List<InventoryItemBase> RequestListOfItems()
|
||||
{
|
||||
@@ -264,7 +256,7 @@ namespace OpenSim.Framework.Communications.Cache
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Return the list of immediate child folders in this folder.
|
||||
/// Return a copy of the list of immediate child folders in this folder.
|
||||
/// </summary>
|
||||
public List<InventoryFolderBase> RequestListOfFolders()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user