diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2019-02-15 21:21:58 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-15 21:21:58 +0300 |
| commit | 7cc69f30c4519db4162acfbc4d056ae34e6ca6ef (patch) | |
| tree | 422e6216e79101b00489be15593f3e09ce45ec38 /MediaBrowser.Model/System/SystemInfo.cs | |
| parent | 8425d76198c3cfc69b013c93d5056f2329c6ad4c (diff) | |
| parent | c74028d08d4fcbd2a921423f5b2b6dea7012a11e (diff) | |
Merge pull request #801 from Bond-009/di
Move to 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>(); } } } |
