aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common
diff options
context:
space:
mode:
authorKGT1 <kilian.gamn@gmx.de>2025-10-07 09:52:30 +0000
committerMBR#0001 <mbr@mbr.pw>2025-11-22 17:15:09 +0100
commit41c1c5f7bf71552b2babbd7c0066c9057c970559 (patch)
treea6be9d76bb92f9fdc81c89a6443ecd9e9bca6687 /MediaBrowser.Common
parentf1242230157282c4964de04a0d381f6c0d5c6595 (diff)
remove global subtitle configuration
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)
- };
- }
- }
-}