diff options
Diffstat (limited to 'MediaBrowser.Api/ApiEntryPoint.cs')
| -rw-r--r-- | MediaBrowser.Api/ApiEntryPoint.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Api/ApiEntryPoint.cs b/MediaBrowser.Api/ApiEntryPoint.cs index 04cef60bf..9676a2c2a 100644 --- a/MediaBrowser.Api/ApiEntryPoint.cs +++ b/MediaBrowser.Api/ApiEntryPoint.cs @@ -70,7 +70,7 @@ namespace MediaBrowser.Api { if (string.IsNullOrWhiteSpace(value)) { - return new string[] { }; + return Array.Empty<string>(); } if (removeEmpty) @@ -88,7 +88,6 @@ namespace MediaBrowser.Api public void Dispose() { - GC.SuppressFinalize(this); } } } |
