diff options
| author | KGT1 <kilian.gamn@gmx.de> | 2026-04-18 17:06:46 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-04-18 17:06:46 +0200 |
| commit | 1d44899606110ffd7d984bd7d52b8cd57e18c273 (patch) | |
| tree | 3375ef694be0de1436245b24497ecef67f0a88cd /MediaBrowser.Common | |
| parent | 946ff12185289b5dc38732497bb362aab7f192fe (diff) | |
Remove global subtitle configuration (#14957)
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) - }; - } - } -} |
