mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Separate reports similar to DatFiles for SV
This commit is contained in:
@@ -42,10 +42,10 @@ namespace SabreTools.Reports
|
||||
{
|
||||
StatReportFormat.None => new Textfile(statsList, true),
|
||||
StatReportFormat.Textfile => new Textfile(statsList, false),
|
||||
StatReportFormat.CSV => new SeparatedValue(statsList, ','),
|
||||
StatReportFormat.CSV => new CommaSeparatedValue(statsList),
|
||||
StatReportFormat.HTML => new Html(statsList),
|
||||
StatReportFormat.SSV => new SeparatedValue(statsList, ';'),
|
||||
StatReportFormat.TSV => new SeparatedValue(statsList, '\t'),
|
||||
StatReportFormat.SSV => new SemicolonSeparatedValue(statsList),
|
||||
StatReportFormat.TSV => new TabSeparatedValue(statsList),
|
||||
_ => null,
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user