From 47c729fdf4f8987d2789ed54aeec2022719cb786 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sat, 25 Nov 2023 16:04:17 -0500 Subject: [PATCH] Nullify `IOAuthValidator` --- src/Tgstation.Server.Host/Security/OAuth/IOAuthValidator.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Tgstation.Server.Host/Security/OAuth/IOAuthValidator.cs b/src/Tgstation.Server.Host/Security/OAuth/IOAuthValidator.cs index 402fb5efe7..472a7ff091 100644 --- a/src/Tgstation.Server.Host/Security/OAuth/IOAuthValidator.cs +++ b/src/Tgstation.Server.Host/Security/OAuth/IOAuthValidator.cs @@ -3,8 +3,6 @@ using System.Threading.Tasks; using Tgstation.Server.Api.Models; -#nullable disable - namespace Tgstation.Server.Host.Security.OAuth { /// @@ -29,6 +27,6 @@ namespace Tgstation.Server.Host.Security.OAuth /// The OAuth response string from web application. /// The for the operation. /// A resulting in if authentication failed, if a rate limit occurred, and the validated otherwise. - ValueTask ValidateResponseCode(string code, CancellationToken cancellationToken); + ValueTask ValidateResponseCode(string code, CancellationToken cancellationToken); } }