Skip to content

Commit

Permalink
Merge pull request #590 from hargata/Hargata/csv.extrafield.export
Browse files Browse the repository at this point in the history
remove unused variable.
  • Loading branch information
hargata authored Aug 23, 2024
2 parents 6ab7ee6 + 7cb5d82 commit 7179b60
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Helper/StaticHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,6 @@ public static string GetImportModeIcon(ImportMode importMode)
//CSV Write Methods
public static void WriteGenericRecordExportModel(CsvWriter _csv, IEnumerable<GenericRecordExportModel> genericRecords)
{
bool headerWritten = false;
var extraHeaders = genericRecords.SelectMany(x => x.ExtraFields).Select(y => y.Name).OrderBy(x => x).Distinct();
//write headers
_csv.WriteField(nameof(GenericRecordExportModel.Date));
Expand Down

0 comments on commit 7179b60

Please sign in to comment.