aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/GenericConfig/Xml
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/GenericConfig/Xml')
-rw-r--r--OpenSim/Framework/GenericConfig/Xml/Properties/AssemblyInfo.cs2
-rw-r--r--OpenSim/Framework/GenericConfig/Xml/XmlConfig.cs5
2 files changed, 2 insertions, 5 deletions
diff --git a/OpenSim/Framework/GenericConfig/Xml/Properties/AssemblyInfo.cs b/OpenSim/Framework/GenericConfig/Xml/Properties/AssemblyInfo.cs
index de5f48d..fcffd67 100644
--- a/OpenSim/Framework/GenericConfig/Xml/Properties/AssemblyInfo.cs
+++ b/OpenSim/Framework/GenericConfig/Xml/Properties/AssemblyInfo.cs
@@ -1,7 +1,5 @@
1using System.Reflection; 1using System.Reflection;
2using System.Runtime.CompilerServices;
3using System.Runtime.InteropServices; 2using System.Runtime.InteropServices;
4
5// General Information about an assembly is controlled through the following 3// General Information about an assembly is controlled through the following
6// set of attributes. Change these attribute values to modify the information 4// set of attributes. Change these attribute values to modify the information
7// associated with an assembly. 5// associated with an assembly.
diff --git a/OpenSim/Framework/GenericConfig/Xml/XmlConfig.cs b/OpenSim/Framework/GenericConfig/Xml/XmlConfig.cs
index c526aec..7fa085d 100644
--- a/OpenSim/Framework/GenericConfig/Xml/XmlConfig.cs
+++ b/OpenSim/Framework/GenericConfig/Xml/XmlConfig.cs
@@ -26,8 +26,7 @@
26* 26*
27*/ 27*/
28using System; 28using System;
29using System.Collections.Generic; 29using System.IO;
30using System.Text;
31using System.Xml; 30using System.Xml;
32using OpenSim.Framework.Interfaces; 31using OpenSim.Framework.Interfaces;
33 32
@@ -50,7 +49,7 @@ namespace OpenSim.GenericConfig
50 { 49 {
51 doc = new XmlDocument(); 50 doc = new XmlDocument();
52 51
53 if (System.IO.File.Exists(fileName)) 52 if (File.Exists(fileName))
54 { 53 {
55 XmlTextReader reader = new XmlTextReader(fileName); 54 XmlTextReader reader = new XmlTextReader(fileName);
56 reader.WhitespaceHandling = WhitespaceHandling.None; 55 reader.WhitespaceHandling = WhitespaceHandling.None;