aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/LoginService.cs
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/Communications/LoginService.cs
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/Communications/LoginService.cs')
-rw-r--r--OpenSim/Framework/Communications/LoginService.cs2
1 files changed, 1 insertions, 1 deletions
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;