diff options
author | Justin Clarke Casey | 2009-05-14 18:08:54 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-05-14 18:08:54 +0000 |
commit | 303aa4b65ead33c44122d61c0f9ef075236e6f76 (patch) | |
tree | 9007de8773b2f33af81ec2530214ecb3ef468db6 /OpenSim/Region/CoreModules/ServiceConnectors | |
parent | * refactor: break some of xml2 serialization out of sog (diff) | |
download | opensim-SC-303aa4b65ead33c44122d61c0f9ef075236e6f76.zip opensim-SC-303aa4b65ead33c44122d61c0f9ef075236e6f76.tar.gz opensim-SC-303aa4b65ead33c44122d61c0f9ef075236e6f76.tar.bz2 opensim-SC-303aa4b65ead33c44122d61c0f9ef075236e6f76.tar.xz |
* refactor: move bottom part of 'xml2' serializaton to separate class
Diffstat (limited to 'OpenSim/Region/CoreModules/ServiceConnectors')
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectors/Interregion/LocalInterregionComms.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectors/Interregion/RESTInterregionComms.cs | 2 |
2 files changed, 2 insertions, 2 deletions
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 | |||
220 | * Object-related communications | 220 | * Object-related communications |
221 | */ | 221 | */ |
222 | 222 | ||
223 | public bool SendCreateObject(ulong regionHandle, ISceneObject sog, bool isLocalCall) | 223 | public bool SendCreateObject(ulong regionHandle, SceneObjectGroup sog, bool isLocalCall) |
224 | { | 224 | { |
225 | foreach (Scene s in m_sceneList) | 225 | foreach (Scene s in m_sceneList) |
226 | { | 226 | { |
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 | |||
261 | * Object-related communications | 261 | * Object-related communications |
262 | */ | 262 | */ |
263 | 263 | ||
264 | public bool SendCreateObject(ulong regionHandle, ISceneObject sog, bool isLocalCall) | 264 | public bool SendCreateObject(ulong regionHandle, SceneObjectGroup sog, bool isLocalCall) |
265 | { | 265 | { |
266 | // Try local first | 266 | // Try local first |
267 | if (m_localBackend.SendCreateObject(regionHandle, sog, true)) | 267 | if (m_localBackend.SendCreateObject(regionHandle, sog, true)) |