From 303aa4b65ead33c44122d61c0f9ef075236e6f76 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 14 May 2009 18:08:54 +0000 Subject: * refactor: move bottom part of 'xml2' serializaton to separate class --- .../CoreModules/ServiceConnectors/Interregion/LocalInterregionComms.cs | 2 +- .../CoreModules/ServiceConnectors/Interregion/RESTInterregionComms.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/CoreModules/ServiceConnectors') diff --git a/OpenSim/Region/CoreModules/ServiceConnectors/Interregion/LocalInterregionComms.cs b/OpenSim/Region/CoreModules/ServiceConnectors/Interregion/LocalInterregionComms.cs index bdf2280..98f7085 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectors/Interregion/LocalInterregionComms.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectors/Interregion/LocalInterregionComms.cs @@ -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) { diff --git a/OpenSim/Region/CoreModules/ServiceConnectors/Interregion/RESTInterregionComms.cs b/OpenSim/Region/CoreModules/ServiceConnectors/Interregion/RESTInterregionComms.cs index 606b47c..08c6e7d 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectors/Interregion/RESTInterregionComms.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectors/Interregion/RESTInterregionComms.cs @@ -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)) -- cgit v1.1