diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-07-04 23:10:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-04 23:10:45 +0200 |
| commit | fb91e4fc23a81631d06f0f90812eb0d27e6de815 (patch) | |
| tree | 886f94504b57f3024ae5b6b93d5e944613975090 /MediaBrowser.Controller/Library/TVUtils.cs | |
| parent | 46f67c9ea4f13e14d5f0b2aa30fdf0e10655c37d (diff) | |
| parent | 6d1b00da648e01a15c0c0384c79d37c824358769 (diff) | |
Merge pull request #3502 from barronpm/array-empty
Use Array.Empty
Diffstat (limited to 'MediaBrowser.Controller/Library/TVUtils.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/TVUtils.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Library/TVUtils.cs b/MediaBrowser.Controller/Library/TVUtils.cs index fc9b3f1c6..a3aa6019e 100644 --- a/MediaBrowser.Controller/Library/TVUtils.cs +++ b/MediaBrowser.Controller/Library/TVUtils.cs @@ -38,7 +38,7 @@ namespace MediaBrowser.Controller.Library }; } - return new DayOfWeek[] { }; + return Array.Empty<DayOfWeek>(); } return null; |
