Suppress some warnings

This commit is contained in:
Halgari
2022-10-07 15:09:08 -06:00
parent 140090cfc4
commit 4e2f8b585d
10 changed files with 33 additions and 4 deletions

View File

@ -23,6 +23,6 @@ public class ExtractedNativeFile : NativeFileStreamFactory, IExtractedFile
if (CanMove)
await _file.MoveToAsync(newPath, true, token);
else
await _file.CopyToAsync(newPath, true, token);
await _file.CopyToAsync(newPath, token);
}
}