* refactor: eliminate unused SubFoldersCount
parent
a62b906a7b
commit
465e77b618
|
@ -50,14 +50,6 @@ namespace OpenSim.Framework.Communications.Cache
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Dictionary<LLUUID, InventoryFolderImpl> SubFolders = new Dictionary<LLUUID, InventoryFolderImpl>();
|
public Dictionary<LLUUID, InventoryFolderImpl> SubFolders = new Dictionary<LLUUID, InventoryFolderImpl>();
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// The number of child folders
|
|
||||||
/// </summary>
|
|
||||||
public int SubFoldersCount
|
|
||||||
{
|
|
||||||
get { return SubFolders.Count; }
|
|
||||||
}
|
|
||||||
|
|
||||||
// Constructors
|
// Constructors
|
||||||
public InventoryFolderImpl(InventoryFolderBase folderbase)
|
public InventoryFolderImpl(InventoryFolderBase folderbase)
|
||||||
{
|
{
|
||||||
|
@ -244,7 +236,7 @@ namespace OpenSim.Framework.Communications.Cache
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Return the list of child items in this folder
|
/// Return a copy of the list of child items in this folder
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public List<InventoryItemBase> RequestListOfItems()
|
public List<InventoryItemBase> RequestListOfItems()
|
||||||
{
|
{
|
||||||
|
@ -264,7 +256,7 @@ namespace OpenSim.Framework.Communications.Cache
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <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>
|
/// </summary>
|
||||||
public List<InventoryFolderBase> RequestListOfFolders()
|
public List<InventoryFolderBase> RequestListOfFolders()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue