aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework
diff options
context:
space:
mode:
authorDiva Canto2009-08-10 16:02:09 -0700
committerDiva Canto2009-08-10 16:02:09 -0700
commit0c47f8e7ab1a1c28de218a3338143038ccaaa4a4 (patch)
tree02d966e07c23807b47f9f079260ea1d2b21f57a3 /OpenSim/Framework
parentLast piece of cleaning up old inventory. Old IInventoryServices and ISecureIn... (diff)
downloadopensim-SC_OLD-0c47f8e7ab1a1c28de218a3338143038ccaaa4a4.zip
opensim-SC_OLD-0c47f8e7ab1a1c28de218a3338143038ccaaa4a4.tar.gz
opensim-SC_OLD-0c47f8e7ab1a1c28de218a3338143038ccaaa4a4.tar.bz2
opensim-SC_OLD-0c47f8e7ab1a1c28de218a3338143038ccaaa4a4.tar.xz
Changed RequestRootFolder to GetRootFolder
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/Tests/LoginServiceTests.cs2
-rw-r--r--OpenSim/Framework/Communications/UserManagerBase.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/Tests/LoginServiceTests.cs b/OpenSim/Framework/Communications/Tests/LoginServiceTests.cs
index 47e0293..373d7cf 100644
--- a/OpenSim/Framework/Communications/Tests/LoginServiceTests.cs
+++ b/OpenSim/Framework/Communications/Tests/LoginServiceTests.cs
@@ -552,7 +552,7 @@ namespace OpenSim.Framework.Communications.Tests
552 return false; 552 return false;
553 } 553 }
554 554
555 public InventoryFolderBase RequestRootFolder(UUID userID) 555 public InventoryFolderBase GetRootFolder(UUID userID)
556 { 556 {
557 InventoryFolderBase root = new InventoryFolderBase(); 557 InventoryFolderBase root = new InventoryFolderBase();
558 root.ID = UUID.Random(); 558 root.ID = UUID.Random();
diff --git a/OpenSim/Framework/Communications/UserManagerBase.cs b/OpenSim/Framework/Communications/UserManagerBase.cs
index bd5d0e3..58174a0 100644
--- a/OpenSim/Framework/Communications/UserManagerBase.cs
+++ b/OpenSim/Framework/Communications/UserManagerBase.cs
@@ -694,7 +694,7 @@ namespace OpenSim.Framework.Communications
694 // local service (standalone) 694 // local service (standalone)
695 m_log.Debug("[USERSTORAGE]: using IInventoryService to create user's inventory"); 695 m_log.Debug("[USERSTORAGE]: using IInventoryService to create user's inventory");
696 m_InventoryService.CreateUserInventory(userProf.ID); 696 m_InventoryService.CreateUserInventory(userProf.ID);
697 InventoryFolderBase rootfolder = m_InventoryService.RequestRootFolder(userProf.ID); 697 InventoryFolderBase rootfolder = m_InventoryService.GetRootFolder(userProf.ID);
698 if (rootfolder != null) 698 if (rootfolder != null)
699 userProf.RootInventoryFolderID = rootfolder.ID; 699 userProf.RootInventoryFolderID = rootfolder.ID;
700 } 700 }