Skip to content

Commit 406f0e1

Browse files
committed
remove null warning
1 parent 3d7c199 commit 406f0e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Runtime/ResumingWebClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public long GetURLFileSize(Uri address)
3535
public Task DownloadFileTaskAsyncResume(Uri address, string fileName, bool resume = false, Callback<float> progressCallback = null)
3636
{
3737
var tcs = new TaskCompletionSource<object>(address);
38-
FileStream? fs = null;
38+
FileStream fs = null;
3939
long bytesToSkip = 0;
4040

4141
try

0 commit comments

Comments
 (0)