From 5441e17880b30113cf403064cbdc363fe8967a45 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Thu, 23 Nov 2023 20:27:16 -0500 Subject: [PATCH] Nullify `IFileTransferStreamHandler` --- .../Transfer/IFileTransferStreamHandler.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Tgstation.Server.Host/Transfer/IFileTransferStreamHandler.cs b/src/Tgstation.Server.Host/Transfer/IFileTransferStreamHandler.cs index 43ec027534..45aafc7cd7 100644 --- a/src/Tgstation.Server.Host/Transfer/IFileTransferStreamHandler.cs +++ b/src/Tgstation.Server.Host/Transfer/IFileTransferStreamHandler.cs @@ -5,8 +5,6 @@ using System.Threading.Tasks; using Tgstation.Server.Api.Models.Response; -#nullable disable - namespace Tgstation.Server.Host.Transfer { /// @@ -21,7 +19,7 @@ namespace Tgstation.Server.Host.Transfer /// The with uploaded data. /// The for the operation. /// A resulting in if the upload completed successfully, otherwise. - ValueTask SetUploadStream(FileTicketResponse ticketResponse, Stream stream, CancellationToken cancellationToken); + ValueTask SetUploadStream(FileTicketResponse ticketResponse, Stream stream, CancellationToken cancellationToken); /// /// Gets the the for a given associated with a pending download. @@ -29,6 +27,6 @@ namespace Tgstation.Server.Host.Transfer /// The . /// The for the operation. /// A resulting in a containing either a containing the data to download or an to return. - ValueTask> RetrieveDownloadStream(FileTicketResponse ticketResponse, CancellationToken cancellationToken); + ValueTask> RetrieveDownloadStream(FileTicketResponse ticketResponse, CancellationToken cancellationToken); } }