From 671cbfcb934bc2a36d59d5a8bc4bcc86233f26ff Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Mon, 18 Dec 2023 14:22:56 -0500 Subject: [PATCH] Nullify `FileDownloader` --- src/Tgstation.Server.Host/IO/FileDownloader.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Tgstation.Server.Host/IO/FileDownloader.cs b/src/Tgstation.Server.Host/IO/FileDownloader.cs index 1b133e9647..30efdb6718 100644 --- a/src/Tgstation.Server.Host/IO/FileDownloader.cs +++ b/src/Tgstation.Server.Host/IO/FileDownloader.cs @@ -7,8 +7,6 @@ using Microsoft.Extensions.Logging; using Tgstation.Server.Api; using Tgstation.Server.Common.Http; -#nullable disable - namespace Tgstation.Server.Host.IO { /// @@ -36,7 +34,7 @@ namespace Tgstation.Server.Host.IO } /// - public IFileStreamProvider DownloadFile(Uri url, string bearerToken) + public IFileStreamProvider DownloadFile(Uri url, string? bearerToken) { ArgumentNullException.ThrowIfNull(url);