From 29e8fcd13c99606813c916c4d464372572af230f Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 24 Jul 2008 15:20:57 +0000 Subject: * minor: Rename IInterGridInventoryServices since it's inter service rather than inter grid --- OpenSim/Grid/UserServer/Main.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'OpenSim/Grid/UserServer/Main.cs') diff --git a/OpenSim/Grid/UserServer/Main.cs b/OpenSim/Grid/UserServer/Main.cs index 30a41f4..4b4292d 100644 --- a/OpenSim/Grid/UserServer/Main.cs +++ b/OpenSim/Grid/UserServer/Main.cs @@ -54,7 +54,7 @@ namespace OpenSim.Grid.UserServer public UserManager m_userManager; public UserLoginService m_loginService; public MessageServersConnector m_messagesService; - protected IInventoryServices m_inventoryService; + protected IInterServiceInventoryServices m_interServiceInventoryService; private LLUUID m_lastCreatedUser = LLUUID.Random(); @@ -103,7 +103,7 @@ namespace OpenSim.Grid.UserServer m_loginService = new UserLoginService( m_userManager, new LibraryRootFolder(), Cfg, Cfg.DefaultStartupMsg); - m_inventoryService = new OGS1InventoryService(m_userManager._config.InventoryUrl); + m_interServiceInventoryService = new OGS1InventoryService(m_userManager._config.InventoryUrl); m_messagesService = new MessageServersConnector(); @@ -196,7 +196,7 @@ namespace OpenSim.Grid.UserServer try { - if (!m_inventoryService.CreateNewUserInventory(userID)) + if (!m_interServiceInventoryService.CreateNewUserInventory(userID)) { throw new Exception( String.Format( -- cgit v1.1