aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/LiveTvOptions.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2018-12-27 22:43:48 +0100
committerBond_009 <bond.009@outlook.com>2019-01-03 23:19:02 +0100
commit340a2c651276d911285a6ff09944c5eba2384a51 (patch)
tree20336fcac335c089c7d3965dbc3f6a9be7e4b3c4 /MediaBrowser.Model/LiveTv/LiveTvOptions.cs
parentc6618d0a5fdfc063ccfba1b73fe16b68fc3ba1ce (diff)
Post GPL cleanup
Diffstat (limited to 'MediaBrowser.Model/LiveTv/LiveTvOptions.cs')
-rw-r--r--MediaBrowser.Model/LiveTv/LiveTvOptions.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/MediaBrowser.Model/LiveTv/LiveTvOptions.cs b/MediaBrowser.Model/LiveTv/LiveTvOptions.cs
index eb4f20f9e8..6a688c7b49 100644
--- a/MediaBrowser.Model/LiveTv/LiveTvOptions.cs
+++ b/MediaBrowser.Model/LiveTv/LiveTvOptions.cs
@@ -25,9 +25,9 @@ namespace MediaBrowser.Model.LiveTv
public LiveTvOptions()
{
- TunerHosts = new TunerHostInfo[] { };
- ListingProviders = new ListingsProviderInfo[] { };
- MediaLocationsCreated = new string[] { };
+ TunerHosts = Array.Empty<TunerHostInfo>();
+ ListingProviders = Array.Empty<ListingsProviderInfo>();
+ MediaLocationsCreated = Array.Empty<string>();
RecordingPostProcessorArguments = "\"{path}\"";
}
}
@@ -76,13 +76,13 @@ namespace MediaBrowser.Model.LiveTv
public ListingsProviderInfo()
{
- NewsCategories = new string[] { "news", "journalism", "documentary", "current affairs" };
- SportsCategories = new string[] { "sports", "basketball", "baseball", "football" };
- KidsCategories = new string[] { "kids", "family", "children", "childrens", "disney" };
- MovieCategories = new string[] { "movie" };
- EnabledTuners = new string[] { };
+ NewsCategories = new [] { "news", "journalism", "documentary", "current affairs" };
+ SportsCategories = new [] { "sports", "basketball", "baseball", "football" };
+ KidsCategories = new [] { "kids", "family", "children", "childrens", "disney" };
+ MovieCategories = new [] { "movie" };
+ EnabledTuners = Array.Empty<string>();
EnableAllTuners = true;
- ChannelMappings = new NameValuePair[] {};
+ ChannelMappings = Array.Empty<NameValuePair>();
}
}
}