Skip to content

Commit 4dad91c

Browse files
authored
Remove suppression as it's no longer flagged by tooling
1 parent 61c118e commit 4dad91c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Tasks/sdk-tasks/ExtractArchiveToDirectory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public override bool Execute()
8787
{
8888
if (ShouldExtractItem(entry.FullName))
8989
{
90-
string destinationPath = Path.Combine(DestinationDirectory, entry.FullName); // codeql [SM02729] This is checked in the CheckDestinationPath method below before being used
90+
string destinationPath = Path.Combine(DestinationDirectory, entry.FullName);
9191
string destinationFileName = GetFullDirectoryPathWithSeperator(destinationPath);
9292
string fullDestDirPath = GetFullDirectoryPathWithSeperator(DestinationDirectory);
9393

0 commit comments

Comments
 (0)