Skip to content

Commit

Permalink
fix up codeql
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed Sep 25, 2023
1 parent a817484 commit f221404
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DrsPlugin/Extraction/DRSImageExtraction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ public override DataTable ProcessPipelineData(DataTable toProcess, IDataLoadEven
{
File.Copy(Path.Combine(PathToImageArchive, sourceFileName), newFilename);
}
catch (Exception e) //todo this should handle the exceptions better
catch (Exception _) //todo this should handle the exceptions better
{
listener.OnNotify(this, new NotifyEventArgs(ProgressEventType.Information,
$"Failed to copy file (${sourceFileName})."));
$"Failed to copy file ({sourceFileName}) to it's new redacted filename."));
}

continue;
Expand Down

0 comments on commit f221404

Please sign in to comment.