diff options
| author | Bond_009 <bond.009@outlook.com> | 2021-05-07 00:39:20 +0200 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2021-05-07 00:39:20 +0200 |
| commit | fb090df0b59b71d7f143d2181d46f18943bbc35e (patch) | |
| tree | cba62fbdc12347dadd93358ef2bd743b8f717dfd /MediaBrowser.Controller/Sorting | |
| parent | a4a3f598af92c7e62a920c4a2eb4f89081c13648 (diff) | |
Enable nullable reference types for MediaBrowser.Controller
Diffstat (limited to 'MediaBrowser.Controller/Sorting')
| -rw-r--r-- | MediaBrowser.Controller/Sorting/AlphanumComparator.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Sorting/IUserBaseItemComparer.cs | 2 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Sorting/SortExtensions.cs | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Sorting/AlphanumComparator.cs b/MediaBrowser.Controller/Sorting/AlphanumComparator.cs index 70cb9eebe..4d9b98889 100644 --- a/MediaBrowser.Controller/Sorting/AlphanumComparator.cs +++ b/MediaBrowser.Controller/Sorting/AlphanumComparator.cs @@ -1,7 +1,5 @@ #pragma warning disable CS1591 -#nullable enable - using System; using System.Collections.Generic; diff --git a/MediaBrowser.Controller/Sorting/IUserBaseItemComparer.cs b/MediaBrowser.Controller/Sorting/IUserBaseItemComparer.cs index 6d03d97ae..bd47db39a 100644 --- a/MediaBrowser.Controller/Sorting/IUserBaseItemComparer.cs +++ b/MediaBrowser.Controller/Sorting/IUserBaseItemComparer.cs @@ -1,3 +1,5 @@ +#nullable disable + using MediaBrowser.Controller.Library; namespace MediaBrowser.Controller.Sorting diff --git a/MediaBrowser.Controller/Sorting/SortExtensions.cs b/MediaBrowser.Controller/Sorting/SortExtensions.cs index 88467814c..aa6ec513f 100644 --- a/MediaBrowser.Controller/Sorting/SortExtensions.cs +++ b/MediaBrowser.Controller/Sorting/SortExtensions.cs @@ -1,3 +1,5 @@ +#nullable disable + #pragma warning disable CS1591 using System; |
