Re-normalize indentation

This commit is contained in:
Matt Nadareski
2020-06-12 10:05:47 -07:00
parent 4b6ad9be4f
commit f00fdfa1ec
6 changed files with 12 additions and 0 deletions

View File

@@ -542,6 +542,8 @@ namespace SabreTools.Library.DatFiles
XmlTextWriter xtw = new XmlTextWriter(fs, new UTF8Encoding(false));
xtw.Formatting = Formatting.Indented;
xtw.IndentChar = '\t';
xtw.Indentation = 1;
// Write out the header
WriteHeader(xtw);