diff options
author | Justin Clarke Casey | 2009-05-14 18:46:17 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-05-14 18:46:17 +0000 |
commit | 02bac7fea4f556f827b9bc4456c5c02c84ae8dbd (patch) | |
tree | 3e1709971a15828edcce39014ae4cab5d3eab45e /OpenSim | |
parent | Added a bool variable to OGS1GridServices to be able to turn off the use of t... (diff) | |
download | opensim-SC_OLD-02bac7fea4f556f827b9bc4456c5c02c84ae8dbd.zip opensim-SC_OLD-02bac7fea4f556f827b9bc4456c5c02c84ae8dbd.tar.gz opensim-SC_OLD-02bac7fea4f556f827b9bc4456c5c02c84ae8dbd.tar.bz2 opensim-SC_OLD-02bac7fea4f556f827b9bc4456c5c02c84ae8dbd.tar.xz |
* refactor: move SceneXmlLoader into subpackage
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/CoreModules/World/Serialiser/SerialiserModule.cs | 1 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Serialization/SceneXmlLoader.cs (renamed from OpenSim/Region/Framework/Scenes/SceneXmlLoader.cs) | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/Serialiser/SerialiserModule.cs b/OpenSim/Region/CoreModules/World/Serialiser/SerialiserModule.cs index 3e3144a..8112916 100644 --- a/OpenSim/Region/CoreModules/World/Serialiser/SerialiserModule.cs +++ b/OpenSim/Region/CoreModules/World/Serialiser/SerialiserModule.cs | |||
@@ -33,6 +33,7 @@ using OpenMetaverse; | |||
33 | using OpenSim.Region.CoreModules.Framework.InterfaceCommander; | 33 | using OpenSim.Region.CoreModules.Framework.InterfaceCommander; |
34 | using OpenSim.Region.Framework.Interfaces; | 34 | using OpenSim.Region.Framework.Interfaces; |
35 | using OpenSim.Region.Framework.Scenes; | 35 | using OpenSim.Region.Framework.Scenes; |
36 | using OpenSim.Region.Framework.Scenes.Serialization; | ||
36 | 37 | ||
37 | namespace OpenSim.Region.CoreModules.World.Serialiser | 38 | namespace OpenSim.Region.CoreModules.World.Serialiser |
38 | { | 39 | { |
diff --git a/OpenSim/Region/Framework/Scenes/SceneXmlLoader.cs b/OpenSim/Region/Framework/Scenes/Serialization/SceneXmlLoader.cs index 5418139..24f1be1 100644 --- a/OpenSim/Region/Framework/Scenes/SceneXmlLoader.cs +++ b/OpenSim/Region/Framework/Scenes/Serialization/SceneXmlLoader.cs | |||
@@ -33,10 +33,10 @@ using System.Xml; | |||
33 | using OpenMetaverse; | 33 | using OpenMetaverse; |
34 | using log4net; | 34 | using log4net; |
35 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
36 | using OpenSim.Region.Framework.Scenes.Serialization; | 36 | using OpenSim.Region.Framework.Scenes; |
37 | using OpenSim.Region.Physics.Manager; | 37 | using OpenSim.Region.Physics.Manager; |
38 | 38 | ||
39 | namespace OpenSim.Region.Framework.Scenes | 39 | namespace OpenSim.Region.Framework.Scenes.Serialization |
40 | { | 40 | { |
41 | /// <summary> | 41 | /// <summary> |
42 | /// Static methods to serialize and deserialize scene objects to and from XML | 42 | /// Static methods to serialize and deserialize scene objects to and from XML |