aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Chapters/ChapterManager.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2016-12-30 00:57:11 -0500
committerGitHub <noreply@github.com>2016-12-30 00:57:11 -0500
commit0577c38714902152f6c20ab93e77dec1bae7bfd7 (patch)
tree4dd2facb7d376848ae277104b200ad97b81ded7b /MediaBrowser.Providers/Chapters/ChapterManager.cs
parentc10b152018967ddafe72efbccfe8ca6c586cbf04 (diff)
parentb8f57f586b218558bcb45259d65dfe990e593559 (diff)
Merge pull request #2374 from MediaBrowser/dev
Dev
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)
- }
- };
- }
}
}