* refactor: Remove the need to separately pass in the http listener to the scene - this is always available via CommsManager

This commit is contained in:
Justin Clarke Casey
2009-01-06 15:09:52 +00:00
parent fde6a1665c
commit b6ee2f15ba
7 changed files with 23 additions and 23 deletions

View File

@@ -467,11 +467,11 @@ namespace OpenSim
AgentCircuitManager circuitManager)
{
SceneCommunicationService sceneGridService = new SceneCommunicationService(m_commsManager);
return
new Scene(regionInfo, circuitManager, m_commsManager, sceneGridService, m_assetCache,
storageManager, m_httpServer,
m_moduleLoader, m_configSettings.DumpAssetsToFile, m_configSettings.PhysicalPrim, m_configSettings.See_into_region_from_neighbor, m_config.Source,
m_version);
return new Scene(
regionInfo, circuitManager, m_commsManager, sceneGridService, m_assetCache,
storageManager, m_moduleLoader, m_configSettings.DumpAssetsToFile, m_configSettings.PhysicalPrim,
m_configSettings.See_into_region_from_neighbor, m_config.Source, m_version);
}
public void handleRestartRegion(RegionInfo whichRegion)