diff options
| author | KGT1 <kilian.gamn@gmx.de> | 2025-10-07 09:52:30 +0000 |
|---|---|---|
| committer | MBR#0001 <mbr@mbr.pw> | 2025-11-22 17:15:09 +0100 |
| commit | 41c1c5f7bf71552b2babbd7c0066c9057c970559 (patch) | |
| tree | a6be9d76bb92f9fdc81c89a6443ecd9e9bca6687 /MediaBrowser.Common | |
| parent | f1242230157282c4964de04a0d381f6c0d5c6595 (diff) | |
remove global subtitle configuration
Diffstat (limited to 'MediaBrowser.Common')
| -rw-r--r-- | MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs b/MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs deleted file mode 100644 index 0445397ad8..0000000000 --- a/MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs +++ /dev/null @@ -1,21 +0,0 @@ -#pragma warning disable CS1591 - -using System.Collections.Generic; -using MediaBrowser.Common.Configuration; -using MediaBrowser.Model.Providers; - -namespace MediaBrowser.Common.Providers -{ - public class SubtitleConfigurationFactory : IConfigurationFactory - { - /// <inheritdoc /> - public IEnumerable<ConfigurationStore> GetConfigurations() - { - yield return new ConfigurationStore() - { - Key = "subtitles", - ConfigurationType = typeof(SubtitleOptions) - }; - } - } -} |
