aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Providers
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-10-09 17:10:16 +0200
committerBond_009 <bond.009@outlook.com>2019-10-09 17:14:15 +0200
commit9d4ce82ab9e85a89aa2463e051f805113d952ac5 (patch)
tree27ca4a6f450dd1959be04fb534f93881d4718627 /MediaBrowser.Common/Providers
parentd8d2e52e3ffaa59a32cc2cbb4997022b979f9ca0 (diff)
Enable `TreatWarningsAsErrors` for MediaBrowser.Common and Emby.Photos
Adds `#pragma warning disable CS1591` to all files in MediaBrowser.Common containing undocumented members.
Diffstat (limited to 'MediaBrowser.Common/Providers')
-rw-r--r--MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs b/MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs
index 09d974db6..0445397ad 100644
--- a/MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs
+++ b/MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs
@@ -1,3 +1,5 @@
+#pragma warning disable CS1591
+
using System.Collections.Generic;
using MediaBrowser.Common.Configuration;
using MediaBrowser.Model.Providers;
@@ -6,6 +8,7 @@ namespace MediaBrowser.Common.Providers
{
public class SubtitleConfigurationFactory : IConfigurationFactory
{
+ /// <inheritdoc />
public IEnumerable<ConfigurationStore> GetConfigurations()
{
yield return new ConfigurationStore()