* refactor: eliminate unused SubFoldersCount
parent
a62b906a7b
commit
465e77b618
|
@ -50,14 +50,6 @@ namespace OpenSim.Framework.Communications.Cache
|
|||
/// </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()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue