From 5d2a157e64f19a061a37d5458b34cc563ee288a1 Mon Sep 17 00:00:00 2001 From: Diva Canto Date: Mon, 10 Aug 2009 10:48:21 -0700 Subject: First pass at cleaning up old OGS1 and Local Inventory: removed everything-inventory in CommsManager, which wasn't actively used anymore. --- .../Communications/OGS1/CommunicationsOGS1.cs | 24 ---------------------- 1 file changed, 24 deletions(-) (limited to 'OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs') diff --git a/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs b/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs index 323f813..8b5779f 100644 --- a/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs +++ b/OpenSim/Region/Communications/OGS1/CommunicationsOGS1.cs @@ -42,19 +42,6 @@ namespace OpenSim.Region.Communications.OGS1 OGS1GridServices gridInterComms = new OGS1GridServices(serversInfo); m_gridService = gridInterComms; - if (serversInfo.secureInventoryServer) - { - OGS1SecureInventoryService invService = new OGS1SecureInventoryService(serversInfo.InventoryURL); - AddSecureInventoryService(invService); - m_defaultInventoryHost = invService.Host; - } - else - { - OGS1InventoryService invService = new OGS1InventoryService(serversInfo.InventoryURL); - AddInventoryService(invService); - m_defaultInventoryHost = invService.Host; - } - // This plugin arrangement could eventually be configurable rather than hardcoded here. OGS1UserServices userServices = new OGS1UserServices(this); userServices.AddPlugin(new TemporaryUserProfilePlugin()); @@ -65,16 +52,5 @@ namespace OpenSim.Region.Communications.OGS1 m_avatarService = (IAvatarService)m_userService; } - public override void AddInventoryService(string hostUrl) - { - OGS1InventoryService invService = new OGS1InventoryService(hostUrl); - AddInventoryService(invService); - } - - public override void AddSecureInventoryService(string hostUrl) - { - OGS1SecureInventoryService invService = new OGS1SecureInventoryService(hostUrl); - AddSecureInventoryService(invService); - } } } -- cgit v1.1