mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-06-20 16:57:55 +00:00
* DocProcessor.cs: Remove any trailing newlines in XML docs. Output
between Mono/Linux and .Net/Windows is now consistent.
This commit is contained in:
parent
74bae3e196
commit
00d966641b
|
@ -1,4 +1,4 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using System.Xml;
|
using System.Xml;
|
||||||
|
@ -55,7 +55,7 @@ namespace Bind
|
||||||
using (StringWriter sw = new StringWriter())
|
using (StringWriter sw = new StringWriter())
|
||||||
{
|
{
|
||||||
xslt.Transform(doc, null, sw);
|
xslt.Transform(doc, null, sw);
|
||||||
return sw.ToString();
|
return sw.ToString().TrimEnd('\n');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (XmlException e)
|
catch (XmlException e)
|
||||||
|
|
Loading…
Reference in a new issue