diff options
author | Justin Clarke Casey | 2009-01-06 15:09:52 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-01-06 15:09:52 +0000 |
commit | b6ee2f15bacda2a2c22785923b1e41639db5a6db (patch) | |
tree | 5608581d1cd1b2f37c149d60e79d81da9cc705ca /OpenSim/Region/Application/OpenSimBase.cs | |
parent | * refactor: call AddHttpHandler() directly via CommsManager (diff) | |
download | opensim-SC_OLD-b6ee2f15bacda2a2c22785923b1e41639db5a6db.zip opensim-SC_OLD-b6ee2f15bacda2a2c22785923b1e41639db5a6db.tar.gz opensim-SC_OLD-b6ee2f15bacda2a2c22785923b1e41639db5a6db.tar.bz2 opensim-SC_OLD-b6ee2f15bacda2a2c22785923b1e41639db5a6db.tar.xz |
* refactor: Remove the need to separately pass in the http listener to the scene - this is always available via CommsManager
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 9031a8b..e3a81d1 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -467,11 +467,11 @@ namespace OpenSim | |||
467 | AgentCircuitManager circuitManager) | 467 | AgentCircuitManager circuitManager) |
468 | { | 468 | { |
469 | SceneCommunicationService sceneGridService = new SceneCommunicationService(m_commsManager); | 469 | SceneCommunicationService sceneGridService = new SceneCommunicationService(m_commsManager); |
470 | return | 470 | |
471 | new Scene(regionInfo, circuitManager, m_commsManager, sceneGridService, m_assetCache, | 471 | return new Scene( |
472 | storageManager, m_httpServer, | 472 | regionInfo, circuitManager, m_commsManager, sceneGridService, m_assetCache, |
473 | m_moduleLoader, m_configSettings.DumpAssetsToFile, m_configSettings.PhysicalPrim, m_configSettings.See_into_region_from_neighbor, m_config.Source, | 473 | storageManager, m_moduleLoader, m_configSettings.DumpAssetsToFile, m_configSettings.PhysicalPrim, |
474 | m_version); | 474 | m_configSettings.See_into_region_from_neighbor, m_config.Source, m_version); |
475 | } | 475 | } |
476 | 476 | ||
477 | public void handleRestartRegion(RegionInfo whichRegion) | 477 | public void handleRestartRegion(RegionInfo whichRegion) |