diff options
author | Justin Clarke Casey | 2009-05-08 18:05:54 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-05-08 18:05:54 +0000 |
commit | 9f39a490b55580a25baf25db49cfaba8abd8e6b5 (patch) | |
tree | 4c16e1948290490111482a89e88c40e36ef12892 /OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |
parent | * minor: rename xml sog serialization method for readability (diff) | |
download | opensim-SC-9f39a490b55580a25baf25db49cfaba8abd8e6b5.zip opensim-SC-9f39a490b55580a25baf25db49cfaba8abd8e6b5.tar.gz opensim-SC-9f39a490b55580a25baf25db49cfaba8abd8e6b5.tar.bz2 opensim-SC-9f39a490b55580a25baf25db49cfaba8abd8e6b5.tar.xz |
* refactor: break out sog original xml serialization to a separate class
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.Inventory.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index 8dbf72a..88416d3 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -1816,7 +1816,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1816 | { | 1816 | { |
1817 | UUID assetID = UUID.Zero; | 1817 | UUID assetID = UUID.Zero; |
1818 | 1818 | ||
1819 | string sceneObjectXml = objectGroup.ToXmlString(); | 1819 | string sceneObjectXml = SceneObjectSerializer.ToOriginalXmlFormat(objectGroup); |
1820 | 1820 | ||
1821 | // Get the user info of the item destination | 1821 | // Get the user info of the item destination |
1822 | // | 1822 | // |
@@ -2040,7 +2040,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2040 | "[ATTACHMENT]: Updating asset for attachment {0}, attachpoint {1}", | 2040 | "[ATTACHMENT]: Updating asset for attachment {0}, attachpoint {1}", |
2041 | grp.UUID, grp.GetAttachmentPoint()); | 2041 | grp.UUID, grp.GetAttachmentPoint()); |
2042 | 2042 | ||
2043 | string sceneObjectXml = objectGroup.ToXmlString(); | 2043 | string sceneObjectXml = SceneObjectSerializer.ToOriginalXmlFormat(objectGroup); |
2044 | 2044 | ||
2045 | CachedUserInfo userInfo = | 2045 | CachedUserInfo userInfo = |
2046 | CommsManager.UserProfileCacheService.GetUserDetails(agentID); | 2046 | CommsManager.UserProfileCacheService.GetUserDetails(agentID); |
@@ -2111,7 +2111,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2111 | itemID = UUID.Zero; | 2111 | itemID = UUID.Zero; |
2112 | if (grp != null) | 2112 | if (grp != null) |
2113 | { | 2113 | { |
2114 | string sceneObjectXml = grp.ToXmlString(); | 2114 | string sceneObjectXml = SceneObjectSerializer.ToOriginalXmlFormat(grp); |
2115 | 2115 | ||
2116 | CachedUserInfo userInfo = | 2116 | CachedUserInfo userInfo = |
2117 | CommsManager.UserProfileCacheService.GetUserDetails(AgentId); | 2117 | CommsManager.UserProfileCacheService.GetUserDetails(AgentId); |