aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Chapters/ChapterManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Providers/Chapters/ChapterManager.cs')
-rw-r--r--MediaBrowser.Providers/Chapters/ChapterManager.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/MediaBrowser.Providers/Chapters/ChapterManager.cs b/MediaBrowser.Providers/Chapters/ChapterManager.cs
index 87aaafb39..5fea2c3cd 100644
--- a/MediaBrowser.Providers/Chapters/ChapterManager.cs
+++ b/MediaBrowser.Providers/Chapters/ChapterManager.cs
@@ -43,25 +43,5 @@ namespace MediaBrowser.Providers.Chapters
{
return _itemRepo.SaveChapters(new Guid(itemId), chapters, cancellationToken);
}
-
- public ChapterOptions GetConfiguration()
- {
- return _config.GetConfiguration<ChapterOptions>("chapters");
- }
- }
-
- public class ChapterConfigurationStore : IConfigurationFactory
- {
- public IEnumerable<ConfigurationStore> GetConfigurations()
- {
- return new List<ConfigurationStore>
- {
- new ConfigurationStore
- {
- Key = "chapters",
- ConfigurationType = typeof (ChapterOptions)
- }
- };
- }
}
}