From 77297ed6cce787c662d67880e15ecaff5f1b4ca1 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 24 Jul 2008 15:56:50 +0000 Subject: * Separate out OGS1 calls used between services (rather than from region to services) into a separate assembly to parallel OpenSim.Region.Communications.OGS1 --- .../Region/Communications/OGS1/OGS1InventoryService.cs | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs') diff --git a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs index 80c286e..2828928 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1InventoryService.cs @@ -39,7 +39,7 @@ using OpenSim.Framework.Statistics; namespace OpenSim.Region.Communications.OGS1 { - public class OGS1InventoryService : IInventoryServices, IInterServiceInventoryServices + public class OGS1InventoryService : IInventoryServices { private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); @@ -306,20 +306,6 @@ namespace OpenSim.Region.Communications.OGS1 return null; } - public bool CreateNewUserInventory(LLUUID userId) - { - return SynchronousRestObjectPoster.BeginPostObject( - "POST", _inventoryServerUrl + "CreateInventory/", userId.UUID); - } - - // See IInventoryServices - public List GetInventorySkeleton(LLUUID userId) - { - m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: The GetInventorySkeleton() method here should never be called!"); - - return new List(); - } - #endregion } } -- cgit v1.1