* refactor: move bottom part of 'xml2' serializaton to separate class

This commit is contained in:
Justin Clarke Casey
2009-05-14 18:08:54 +00:00
parent d10b5e29bc
commit 303aa4b65e
7 changed files with 70 additions and 73 deletions

View File

@@ -220,7 +220,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectors.Interregion
* Object-related communications
*/
public bool SendCreateObject(ulong regionHandle, ISceneObject sog, bool isLocalCall)
public bool SendCreateObject(ulong regionHandle, SceneObjectGroup sog, bool isLocalCall)
{
foreach (Scene s in m_sceneList)
{

View File

@@ -261,7 +261,7 @@ namespace OpenSim.Region.CoreModules.ServiceConnectors.Interregion
* Object-related communications
*/
public bool SendCreateObject(ulong regionHandle, ISceneObject sog, bool isLocalCall)
public bool SendCreateObject(ulong regionHandle, SceneObjectGroup sog, bool isLocalCall)
{
// Try local first
if (m_localBackend.SendCreateObject(regionHandle, sog, true))