diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs b/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs index c2b075c..ab70010 100644 --- a/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs +++ b/OpenSim/Region/Framework/Scenes/Serialization/SceneObjectSerializer.cs | |||
@@ -69,7 +69,7 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
69 | { | 69 | { |
70 | return FromOriginalXmlFormat(reader); | 70 | return FromOriginalXmlFormat(reader); |
71 | } | 71 | } |
72 | catch (Exception e) | 72 | catch /*(Exception e)*/ |
73 | { | 73 | { |
74 | m_log.Error("[SERIALIZER]: Deserialization of xml failed "); | 74 | m_log.Error("[SERIALIZER]: Deserialization of xml failed "); |
75 | //// m_log.Error("[SERIALIZER]: Deserialization of xml failed ", e); | 75 | //// m_log.Error("[SERIALIZER]: Deserialization of xml failed ", e); |
@@ -314,7 +314,7 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
314 | // sceneObject.AggregatePerms(); | 314 | // sceneObject.AggregatePerms(); |
315 | return sceneObject; | 315 | return sceneObject; |
316 | } | 316 | } |
317 | catch (Exception e) | 317 | catch /*(Exception e)*/ |
318 | { | 318 | { |
319 | m_log.Error("[SERIALIZER]: Deserialization of xml failed "); | 319 | m_log.Error("[SERIALIZER]: Deserialization of xml failed "); |
320 | //// m_log.Error("[SERIALIZER]: Deserialization of xml failed ", e); | 320 | //// m_log.Error("[SERIALIZER]: Deserialization of xml failed ", e); |
@@ -1402,7 +1402,7 @@ namespace OpenSim.Region.Framework.Scenes.Serialization | |||
1402 | value = reader.ReadElementContentAsString("Media", String.Empty); | 1402 | value = reader.ReadElementContentAsString("Media", String.Empty); |
1403 | shp.Media = PrimitiveBaseShape.MediaList.FromXml(value); | 1403 | shp.Media = PrimitiveBaseShape.MediaList.FromXml(value); |
1404 | } | 1404 | } |
1405 | catch (XmlException e) | 1405 | catch (XmlException) |
1406 | { | 1406 | { |
1407 | // There are versions of OAR files that contain unquoted XML. | 1407 | // There are versions of OAR files that contain unquoted XML. |
1408 | // ie ONE comercial fork that never wanted their oars to be read by our code | 1408 | // ie ONE comercial fork that never wanted their oars to be read by our code |