mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-03-26 14:05:17 +00:00
Corrected indentation
This commit is contained in:
parent
5aad11f6ee
commit
089c108ea0
|
@ -81,6 +81,13 @@ namespace Bind
|
|||
xslt.Transform(doc, null, sw);
|
||||
Text = sw.ToString().Split(new char[] { '\r', '\n' },
|
||||
StringSplitOptions.RemoveEmptyEntries);
|
||||
|
||||
// Remove unecessary whitespace
|
||||
// Indentation is handled by BindStreamWriter
|
||||
for (int i = 0; i < Text.Length; i++)
|
||||
{
|
||||
Text[i] = Text[i].Trim();
|
||||
}
|
||||
return Text;
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue