* Refactor: Remove unused inventory methods, some of which weren't properly implemented anyway.

This commit is contained in:
Justin Clarke Casey
2008-03-29 23:07:48 +00:00
parent 7722a87b69
commit a6999f8a5d
6 changed files with 16 additions and 73 deletions

View File

@@ -136,6 +136,17 @@ namespace OpenSim.Grid.InventoryServer
return invCollection;
}
/// <summary>
/// Guid to UUID wrapper for same name IInventoryServices method
/// </summary>
/// <param name="rawUserID"></param>
/// <returns></returns>
public List<InventoryFolderBase> GetInventorySkeleton(Guid rawUserID)
{
LLUUID userID = new LLUUID(rawUserID);
return GetInventorySkeleton(userID);
}
public bool CreateUsersInventory(Guid rawUserID)
{