aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common
diff options
context:
space:
mode:
authorKGT1 <kilian.gamn@gmx.de>2026-04-18 17:06:46 +0200
committerGitHub <noreply@github.com>2026-04-18 17:06:46 +0200
commit1d44899606110ffd7d984bd7d52b8cd57e18c273 (patch)
tree3375ef694be0de1436245b24497ecef67f0a88cd /MediaBrowser.Common
parent946ff12185289b5dc38732497bb362aab7f192fe (diff)
Remove global subtitle configuration (#14957)
Diffstat (limited to 'MediaBrowser.Common')
-rw-r--r--MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs21
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)
- };
- }
- }
-}