aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-03-28 16:27:29 +0000
committerJustin Clarke Casey2008-03-28 16:27:29 +0000
commit512e52be4cd0c942105ef5bec71ac8b78ffe02c1 (patch)
tree4d82df98acfbdc26da0433a2f4a456d41203fc8e /OpenSim/Framework
parentfixes mantis #778 and shoots himself for making such a mistake to begin with,... (diff)
downloadopensim-SC_OLD-512e52be4cd0c942105ef5bec71ac8b78ffe02c1.zip
opensim-SC_OLD-512e52be4cd0c942105ef5bec71ac8b78ffe02c1.tar.gz
opensim-SC_OLD-512e52be4cd0c942105ef5bec71ac8b78ffe02c1.tar.bz2
opensim-SC_OLD-512e52be4cd0c942105ef5bec71ac8b78ffe02c1.tar.xz
* Remove pointless boolean on AgentInventory.CreateRootFolder()
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r--OpenSim/Framework/AgentInventory.cs6
-rw-r--r--OpenSim/Framework/Communications/InventoryServiceBase.cs2
-rw-r--r--OpenSim/Framework/Communications/LoginService.cs2
3 files changed, 3 insertions, 7 deletions
diff --git a/OpenSim/Framework/AgentInventory.cs b/OpenSim/Framework/AgentInventory.cs
index aa56be1..916cdf8 100644
--- a/OpenSim/Framework/AgentInventory.cs
+++ b/OpenSim/Framework/AgentInventory.cs
@@ -67,7 +67,7 @@ namespace OpenSim.Framework
67 return (true); 67 return (true);
68 } 68 }
69 69
70 public void CreateRootFolder(LLUUID newAgentID, bool createTextures) 70 public void CreateRootFolder(LLUUID newAgentID)
71 { 71 {
72 AgentID = newAgentID; 72 AgentID = newAgentID;
73 InventoryRoot = new InventoryFolder(); 73 InventoryRoot = new InventoryFolder();
@@ -79,10 +79,6 @@ namespace OpenSim.Framework
79 InventoryRoot.FolderName = "My Inventory"; 79 InventoryRoot.FolderName = "My Inventory";
80 InventoryFolders.Add(InventoryRoot.FolderID, InventoryRoot); 80 InventoryFolders.Add(InventoryRoot.FolderID, InventoryRoot);
81 InventoryRoot.OwnerID = AgentID; 81 InventoryRoot.OwnerID = AgentID;
82 if (createTextures)
83 {
84 CreateNewFolder(LLUUID.Random(), 0, "Textures", InventoryRoot.FolderID);
85 }
86 } 82 }
87 83
88 public bool CreateNewFolder(LLUUID folderID, ushort type, string folderName) 84 public bool CreateNewFolder(LLUUID folderID, ushort type, string folderName)
diff --git a/OpenSim/Framework/Communications/InventoryServiceBase.cs b/OpenSim/Framework/Communications/InventoryServiceBase.cs
index b73340c..78de4a5 100644
--- a/OpenSim/Framework/Communications/InventoryServiceBase.cs
+++ b/OpenSim/Framework/Communications/InventoryServiceBase.cs
@@ -50,7 +50,7 @@ namespace OpenSim.Framework.Communications
50 { 50 {
51 if (!String.IsNullOrEmpty(FileName)) 51 if (!String.IsNullOrEmpty(FileName))
52 { 52 {
53 m_log.Info("[AGENTINVENTORY]: Inventorystorage: Attempting to load " + FileName); 53 m_log.Info("[AGENTINVENTORY]: Inventory storage: Attempting to load " + FileName);
54 Assembly pluginAssembly = Assembly.LoadFrom(FileName); 54 Assembly pluginAssembly = Assembly.LoadFrom(FileName);
55 55
56 foreach (Type pluginType in pluginAssembly.GetTypes()) 56 foreach (Type pluginType in pluginAssembly.GetTypes())
diff --git a/OpenSim/Framework/Communications/LoginService.cs b/OpenSim/Framework/Communications/LoginService.cs
index c04e8b9..2286b59 100644
--- a/OpenSim/Framework/Communications/LoginService.cs
+++ b/OpenSim/Framework/Communications/LoginService.cs
@@ -757,7 +757,7 @@ namespace OpenSim.Framework.UserManagement
757 protected virtual InventoryData CreateInventoryData(LLUUID userID) 757 protected virtual InventoryData CreateInventoryData(LLUUID userID)
758 { 758 {
759 AgentInventory userInventory = new AgentInventory(); 759 AgentInventory userInventory = new AgentInventory();
760 userInventory.CreateRootFolder(userID, false); 760 userInventory.CreateRootFolder(userID);
761 761
762 ArrayList AgentInventoryArray = new ArrayList(); 762 ArrayList AgentInventoryArray = new ArrayList();
763 Hashtable TempHash; 763 Hashtable TempHash;