Skip to content

Commit

Permalink
tidy up codeql
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed Feb 17, 2025
1 parent c87dfde commit 30cca3d
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions Rdmp.Dicom/Extraction/DicomTagToCSV.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@ public DataTable ProcessPipelineData(DataTable toProcess, IDataLoadEventListener
return toProcess;
}

var fileRows = new Dictionary<string, DataRow>();
var releaseIDs = new Dictionary<string, string>();
var dicomFiles = new List<(string, string)>();

foreach (DataRow processRow in toProcess.Rows)
Expand All @@ -70,7 +68,6 @@ public DataTable ProcessPipelineData(DataTable toProcess, IDataLoadEventListener
throw new Exception($"Number of errors reported ({_errors}) reached the threshold ({ErrorThreshold})");

var file = (string)processRow[RelativeArchiveColumnName];
fileRows.Add(file, processRow);
dicomFiles.Add((file, file));
}

Expand Down

0 comments on commit 30cca3d

Please sign in to comment.