* Remove pointless boolean on AgentInventory.CreateRootFolder()

0.6.0-stable
Justin Clarke Casey 2008-03-28 16:27:29 +00:00
parent a13d68d98c
commit 512e52be4c
5 changed files with 5 additions and 9 deletions

View File

@ -67,7 +67,7 @@ namespace OpenSim.Framework
return (true);
}
public void CreateRootFolder(LLUUID newAgentID, bool createTextures)
public void CreateRootFolder(LLUUID newAgentID)
{
AgentID = newAgentID;
InventoryRoot = new InventoryFolder();
@ -79,10 +79,6 @@ namespace OpenSim.Framework
InventoryRoot.FolderName = "My Inventory";
InventoryFolders.Add(InventoryRoot.FolderID, InventoryRoot);
InventoryRoot.OwnerID = AgentID;
if (createTextures)
{
CreateNewFolder(LLUUID.Random(), 0, "Textures", InventoryRoot.FolderID);
}
}
public bool CreateNewFolder(LLUUID folderID, ushort type, string folderName)

View File

@ -50,7 +50,7 @@ namespace OpenSim.Framework.Communications
{
if (!String.IsNullOrEmpty(FileName))
{
m_log.Info("[AGENTINVENTORY]: Inventorystorage: Attempting to load " + FileName);
m_log.Info("[AGENTINVENTORY]: Inventory storage: Attempting to load " + FileName);
Assembly pluginAssembly = Assembly.LoadFrom(FileName);
foreach (Type pluginType in pluginAssembly.GetTypes())

View File

@ -757,7 +757,7 @@ namespace OpenSim.Framework.UserManagement
protected virtual InventoryData CreateInventoryData(LLUUID userID)
{
AgentInventory userInventory = new AgentInventory();
userInventory.CreateRootFolder(userID, false);
userInventory.CreateRootFolder(userID);
ArrayList AgentInventoryArray = new ArrayList();
Hashtable TempHash;

View File

@ -342,7 +342,7 @@ namespace OpenSim.Grid.UserServer
" for user ID " + userID);
AgentInventory userInventory = new AgentInventory();
userInventory.CreateRootFolder(userID, false);
userInventory.CreateRootFolder(userID);
ArrayList AgentInventoryArray = new ArrayList();
Hashtable TempHash;

View File

@ -239,7 +239,7 @@ namespace OpenSim.Region.Communications.Local
else
{
AgentInventory userInventory = new AgentInventory();
userInventory.CreateRootFolder(userID, false);
userInventory.CreateRootFolder(userID);
ArrayList AgentInventoryArray = new ArrayList();
Hashtable TempHash;