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/Application | |
parent | Remove CreateCommsManagerPlugin (diff) | |
download | opensim-SC_OLD-001d3695683d9511446d194feeb763c437170028.zip opensim-SC_OLD-001d3695683d9511446d194feeb763c437170028.tar.gz opensim-SC_OLD-001d3695683d9511446d194feeb763c437170028.tar.bz2 opensim-SC_OLD-001d3695683d9511446d194feeb763c437170028.tar.xz |
CommunicationsManager deleted.
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/HGCommands.cs | 6 | ||||
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/Application/HGCommands.cs b/OpenSim/Region/Application/HGCommands.cs index 7ae161d..a863697 100644 --- a/OpenSim/Region/Application/HGCommands.cs +++ b/OpenSim/Region/Application/HGCommands.cs | |||
@@ -44,14 +44,14 @@ namespace OpenSim | |||
44 | { | 44 | { |
45 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 45 | // private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
46 | 46 | ||
47 | public static Scene CreateScene(RegionInfo regionInfo, AgentCircuitManager circuitManager, CommunicationsManager m_commsManager, | 47 | public static Scene CreateScene(RegionInfo regionInfo, AgentCircuitManager circuitManager, |
48 | StorageManager storageManager, ModuleLoader m_moduleLoader, ConfigSettings m_configSettings, OpenSimConfigSource m_config, string m_version) | 48 | StorageManager storageManager, ModuleLoader m_moduleLoader, ConfigSettings m_configSettings, OpenSimConfigSource m_config, string m_version) |
49 | { | 49 | { |
50 | HGSceneCommunicationService sceneGridService = new HGSceneCommunicationService(m_commsManager); | 50 | HGSceneCommunicationService sceneGridService = new HGSceneCommunicationService(); |
51 | 51 | ||
52 | return | 52 | return |
53 | new HGScene( | 53 | new HGScene( |
54 | regionInfo, circuitManager, m_commsManager, sceneGridService, storageManager, | 54 | regionInfo, circuitManager, sceneGridService, storageManager, |
55 | m_moduleLoader, false, m_configSettings.PhysicalPrim, | 55 | m_moduleLoader, false, m_configSettings.PhysicalPrim, |
56 | m_configSettings.See_into_region_from_neighbor, m_config.Source, m_version); | 56 | m_configSettings.See_into_region_from_neighbor, m_config.Source, m_version); |
57 | } | 57 | } |
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index d745fdc..7963785 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -607,13 +607,13 @@ namespace OpenSim | |||
607 | { | 607 | { |
608 | bool hgrid = ConfigSource.Source.Configs["Startup"].GetBoolean("hypergrid", false); | 608 | bool hgrid = ConfigSource.Source.Configs["Startup"].GetBoolean("hypergrid", false); |
609 | if (hgrid) | 609 | if (hgrid) |
610 | return HGCommands.CreateScene(regionInfo, circuitManager, m_commsManager, | 610 | return HGCommands.CreateScene(regionInfo, circuitManager, |
611 | storageManager, m_moduleLoader, m_configSettings, m_config, m_version); | 611 | storageManager, m_moduleLoader, m_configSettings, m_config, m_version); |
612 | 612 | ||
613 | SceneCommunicationService sceneGridService = new SceneCommunicationService(m_commsManager); | 613 | SceneCommunicationService sceneGridService = new SceneCommunicationService(); |
614 | 614 | ||
615 | return new Scene( | 615 | return new Scene( |
616 | regionInfo, circuitManager, m_commsManager, sceneGridService, | 616 | regionInfo, circuitManager, sceneGridService, |
617 | storageManager, m_moduleLoader, false, m_configSettings.PhysicalPrim, | 617 | storageManager, m_moduleLoader, false, m_configSettings.PhysicalPrim, |
618 | m_configSettings.See_into_region_from_neighbor, m_config.Source, m_version); | 618 | m_configSettings.See_into_region_from_neighbor, m_config.Source, m_version); |
619 | } | 619 | } |