Update some comments

This commit is contained in:
Nathan McRae 2024-03-09 09:58:09 -08:00
parent b56236cbb7
commit aef92e87d4

View File

@ -71,7 +71,6 @@ public class SaneTsv
public static CommentedTsv<T> ParseCommentedTsv<T>(byte[] inputBuffer) where T : CommentedTsvRecord, new()
{
// TODO: add the file comment?
return (CommentedTsv<T>)Parse<T>(inputBuffer, FormatType.COMMENTED_TSV);
}
@ -337,6 +336,7 @@ public class SaneTsv
parsedValues[i] = Parse<T>(inputBuffer, format, headerPropertyInfos.ToArray(), headerTypes.ToArray(), startIndex, endIndex);
});
// TODO: Handle relative line numbers
for (int i = 0; i < tasks; i++)
{
parsed.Records.AddRange(parsedValues[i]);