From 651681c27630af0fd0852980ac473ce570805dc3 Mon Sep 17 00:00:00 2001 From: Bond_009 Date: Wed, 13 Mar 2024 14:56:51 +0100 Subject: Enable nullable for more files --- MediaBrowser.Controller/Channels/IHasCacheKey.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'MediaBrowser.Controller/Channels/IHasCacheKey.cs') diff --git a/MediaBrowser.Controller/Channels/IHasCacheKey.cs b/MediaBrowser.Controller/Channels/IHasCacheKey.cs index 9fae43033..7d5207c34 100644 --- a/MediaBrowser.Controller/Channels/IHasCacheKey.cs +++ b/MediaBrowser.Controller/Channels/IHasCacheKey.cs @@ -1,5 +1,3 @@ -#nullable disable - #pragma warning disable CS1591 namespace MediaBrowser.Controller.Channels @@ -11,6 +9,6 @@ namespace MediaBrowser.Controller.Channels /// /// The user identifier. /// System.String. - string GetCacheKey(string userId); + string? GetCacheKey(string? userId); } } -- cgit v1.2.3