Fixes dictionary uses (#7)
This commit is contained in:
parent
d4a52344f2
commit
916d404c51
161 changed files with 1211 additions and 1722 deletions
|
|
@ -15,9 +15,7 @@ namespace Server.Gumps
|
|||
|
||||
if (File.Exists(path))
|
||||
{
|
||||
XmlTextReader xml = new XmlTextReader(new StreamReader(path));
|
||||
|
||||
xml.WhitespaceHandling = WhitespaceHandling.None;
|
||||
XmlTextReader xml = new XmlTextReader(new StreamReader(path)) { WhitespaceHandling = WhitespaceHandling.None };
|
||||
|
||||
Root = Parse(xml);
|
||||
|
||||
|
|
@ -40,4 +38,4 @@ namespace Server.Gumps
|
|||
return new ParentNode(xml, null);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue