Handle blank lines in LeafInput

This commit is contained in:
2023-02-27 10:54:43 -05:00
parent 48ab9a19e8
commit 2082eba527
9 changed files with 116 additions and 43 deletions
+2 -2
View File
@@ -8,11 +8,11 @@ namespace LeafWeb.Core.Parsers
{
public class LeafGasComparisonParser : CsvParserBase
{
public LeafGasComparisonParser(FileSystemInfo csvFile) : base(csvFile)
public LeafGasComparisonParser(FileSystemInfo csvFile) : base(csvFile, false)
{
}
public LeafGasComparisonParser(byte[] fileContents) : base(fileContents)
public LeafGasComparisonParser(byte[] fileContents) : base(fileContents, false)
{
}