diff options
| author | Bond_009 <bond.009@outlook.com> | 2024-03-13 14:56:51 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2024-03-13 14:56:51 +0100 |
| commit | 651681c27630af0fd0852980ac473ce570805dc3 (patch) | |
| tree | ea8cce2a0838d5e28e8bfec09bdecd8e313dcbd8 /MediaBrowser.Controller/Channels/IHasCacheKey.cs | |
| parent | 9db093b9d9d3a2e07a329781864e9da95b49dfda (diff) | |
Enable nullable for more files
Diffstat (limited to 'MediaBrowser.Controller/Channels/IHasCacheKey.cs')
| -rw-r--r-- | MediaBrowser.Controller/Channels/IHasCacheKey.cs | 4 |
1 files changed, 1 insertions, 3 deletions
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 /// </summary> /// <param name="userId">The user identifier.</param> /// <returns>System.String.</returns> - string GetCacheKey(string userId); + string? GetCacheKey(string? userId); } } |
