remove more xml things no longer needed on .net >4.5.2

This commit is contained in:
UbitUmarov
2018-01-17 07:17:24 +00:00
parent e9d2d81880
commit 707eb8de82
18 changed files with 4 additions and 22 deletions

View File

@@ -156,7 +156,7 @@ namespace OpenSim.Framework.Serialization.External
return xml;
XmlDocument doc = new XmlDocument();
doc.XmlResolver=null;
doc.LoadXml(xml);
XmlNodeList sops = doc.GetElementsByTagName("SceneObjectPart");

View File

@@ -671,7 +671,7 @@ namespace OpenSim.Framework
public static string GetFormattedXml(string rawXml)
{
XmlDocument xd = new XmlDocument();
xd.XmlResolver=null;
xd.LoadXml(rawXml);
StringBuilder sb = new StringBuilder();