aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Chapters/ChapterManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-29 02:14:59 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-29 02:14:59 -0500
commit853dbfc558e271d2287ff30c774884072ee1aa6e (patch)
treee2784c6440b93fe4ff3aec5e3efa67056413a024 /MediaBrowser.Providers/Chapters/ChapterManager.cs
parentcf720d2d659850cbd3d568984c39527aae0450c3 (diff)
separate player selection into it's own script
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)
- }
- };
- }
}
}