diff options
author | Diva Canto | 2010-01-11 07:45:47 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-11 07:45:47 -0800 |
commit | 001d3695683d9511446d194feeb763c437170028 (patch) | |
tree | 037954a2227cfd5551ddbd9e1d3b1271284c151f /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | Remove CreateCommsManagerPlugin (diff) | |
download | opensim-SC-001d3695683d9511446d194feeb763c437170028.zip opensim-SC-001d3695683d9511446d194feeb763c437170028.tar.gz opensim-SC-001d3695683d9511446d194feeb763c437170028.tar.bz2 opensim-SC-001d3695683d9511446d194feeb763c437170028.tar.xz |
CommunicationsManager deleted.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 0493b4c..618e153 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -140,7 +140,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
140 | protected ModuleLoader m_moduleLoader; | 140 | protected ModuleLoader m_moduleLoader; |
141 | protected StorageManager m_storageManager; | 141 | protected StorageManager m_storageManager; |
142 | protected AgentCircuitManager m_authenticateHandler; | 142 | protected AgentCircuitManager m_authenticateHandler; |
143 | public CommunicationsManager CommsManager; | ||
144 | 143 | ||
145 | protected SceneCommunicationService m_sceneGridService; | 144 | protected SceneCommunicationService m_sceneGridService; |
146 | public bool loginsdisabled = true; | 145 | public bool loginsdisabled = true; |
@@ -547,7 +546,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
547 | #region Constructors | 546 | #region Constructors |
548 | 547 | ||
549 | public Scene(RegionInfo regInfo, AgentCircuitManager authen, | 548 | public Scene(RegionInfo regInfo, AgentCircuitManager authen, |
550 | CommunicationsManager commsMan, SceneCommunicationService sceneGridService, | 549 | SceneCommunicationService sceneGridService, |
551 | StorageManager storeManager, | 550 | StorageManager storeManager, |
552 | ModuleLoader moduleLoader, bool dumpAssetsToFile, bool physicalPrim, | 551 | ModuleLoader moduleLoader, bool dumpAssetsToFile, bool physicalPrim, |
553 | bool SeeIntoRegionFromNeighbor, IConfigSource config, string simulatorVersion) | 552 | bool SeeIntoRegionFromNeighbor, IConfigSource config, string simulatorVersion) |
@@ -583,7 +582,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
583 | m_lastAllocatedLocalId = (uint)(random.NextDouble() * (double)(uint.MaxValue/2))+(uint)(uint.MaxValue/4); | 582 | m_lastAllocatedLocalId = (uint)(random.NextDouble() * (double)(uint.MaxValue/2))+(uint)(uint.MaxValue/4); |
584 | m_moduleLoader = moduleLoader; | 583 | m_moduleLoader = moduleLoader; |
585 | m_authenticateHandler = authen; | 584 | m_authenticateHandler = authen; |
586 | CommsManager = commsMan; | ||
587 | m_sceneGridService = sceneGridService; | 585 | m_sceneGridService = sceneGridService; |
588 | m_storageManager = storeManager; | 586 | m_storageManager = storeManager; |
589 | m_regInfo = regInfo; | 587 | m_regInfo = regInfo; |