diff options
| author | Bond_009 <bond.009@outlook.com> | 2019-02-03 17:09:12 +0100 |
|---|---|---|
| committer | Bond-009 <bond.009@outlook.com> | 2019-02-12 20:52:23 +0100 |
| commit | 81a8ebde22e92c9d8f4292bfb18c9134f43bd956 (patch) | |
| tree | 46390e702cc0bcb339c03e4b1a10059e74062774 /MediaBrowser.Model/System/SystemInfo.cs | |
| parent | eb4b7051676b7493a57a99a821d5dd38bd9d4919 (diff) | |
Move to Microsoft.Extensions.DependencyInjection
This PR replaces SimpleInjector with
Microsoft.Extensions.DependencyInjection.
Diffstat (limited to 'MediaBrowser.Model/System/SystemInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/System/SystemInfo.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index 26f735330..d9ed68b27 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -1,3 +1,4 @@ +using System; using System.Runtime.InteropServices; using MediaBrowser.Model.Updates; @@ -136,7 +137,7 @@ namespace MediaBrowser.Model.System /// </summary> public SystemInfo() { - CompletedInstallations = new InstallationInfo[] { }; + CompletedInstallations = Array.Empty<InstallationInfo>(); } } } |
