From 9ccab46ae8e65412d898603426de6584629ad05f Mon Sep 17 00:00:00 2001 From: lbsa71 Date: Mon, 24 Sep 2007 05:30:03 +0000 Subject: * Trying to streamline CommunicationsManager --- OpenSim/Region/Communications/Local/CommunicationsLocal.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'OpenSim/Region/Communications/Local') diff --git a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs index aa0105c..15167fb 100644 --- a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs +++ b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs @@ -60,15 +60,15 @@ namespace OpenSim.Region.Communications.Local InvenServices = new LocalInventoryService(); InvenServices.AddPlugin(m_settings.InventoryPlugin); - InventoryServer = InvenServices; + m_inventoryServer = InvenServices; UserServices = new LocalUserServices(this, serversInfo); UserServices.AddPlugin(m_settings.UserDatabasePlugin); - UserServer = UserServices; + m_userServer = UserServices; InstanceServices = new LocalBackEndServices(); - GridServer = InstanceServices; - InterRegion = InstanceServices; + m_gridServer = InstanceServices; + m_interRegion = InstanceServices; //CapsServices = new CAPSService(httpServer); -- cgit v1.1