From 4569c8cb201caabf89ef9a8db3fa51e226cd28d9 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sat, 25 Nov 2023 09:42:06 -0500 Subject: [PATCH] Nullify `IIdentityCache` --- src/Tgstation.Server.Host/Security/IIdentityCache.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Tgstation.Server.Host/Security/IIdentityCache.cs b/src/Tgstation.Server.Host/Security/IIdentityCache.cs index 64fd3f39a9..75010f2c64 100644 --- a/src/Tgstation.Server.Host/Security/IIdentityCache.cs +++ b/src/Tgstation.Server.Host/Security/IIdentityCache.cs @@ -2,8 +2,6 @@ using Tgstation.Server.Host.Models; -#nullable disable - namespace Tgstation.Server.Host.Security { /// @@ -23,7 +21,7 @@ namespace Tgstation.Server.Host.Security /// Attempt to load a cached . /// /// The the belongs to. - /// The cached or if it doesn't exist or expired. + /// The cached . ISystemIdentity LoadCachedIdentity(User user); } }