Make comments not end with \n

This commit is contained in:
Nathan McRae 2024-02-15 20:24:44 -08:00
parent 99766f99a6
commit 93f2e2ea5b

View File

@ -231,8 +231,11 @@ public class SaneTsv
{
var commentBytes = new byte[j - i - 1];
Array.Copy(inputBuffer, i + 1, commentBytes, 0, j - i - 1);
if (currentComment.Length > 0)
{
currentComment.Append('\n');
}
currentComment.Append(Encoding.UTF8.GetString(commentBytes));
currentComment.Append("\n");
i = j;
currentLineStart = i + 1;
line++;