From 1d44899606110ffd7d984bd7d52b8cd57e18c273 Mon Sep 17 00:00:00 2001 From: KGT1 Date: Sat, 18 Apr 2026 17:06:46 +0200 Subject: Remove global subtitle configuration (#14957) --- .../Providers/SubtitleConfigurationFactory.cs | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 MediaBrowser.Common/Providers/SubtitleConfigurationFactory.cs (limited to 'MediaBrowser.Common') 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 - { - /// - public IEnumerable GetConfigurations() - { - yield return new ConfigurationStore() - { - Key = "subtitles", - ConfigurationType = typeof(SubtitleOptions) - }; - } - } -} -- cgit v1.2.3