diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-23 03:54:30 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-23 03:54:30 -0500 |
| commit | a1ca5e3ecc076006d7a1b94511132f0544b5e667 (patch) | |
| tree | 81ecb48a7279f7b53e8ffee9458a8344f7b4f172 /MediaBrowser.Controller/Channels/IChannelManager.cs | |
| parent | 5833aedb15c2943109389d90979712978f1b2add (diff) | |
remove dead code
Diffstat (limited to 'MediaBrowser.Controller/Channels/IChannelManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Channels/IChannelManager.cs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/MediaBrowser.Controller/Channels/IChannelManager.cs b/MediaBrowser.Controller/Channels/IChannelManager.cs index 9177e2d81..792744628 100644 --- a/MediaBrowser.Controller/Channels/IChannelManager.cs +++ b/MediaBrowser.Controller/Channels/IChannelManager.cs @@ -15,16 +15,9 @@ namespace MediaBrowser.Controller.Channels /// Adds the parts. /// </summary> /// <param name="channels">The channels.</param> - /// <param name="factories">The factories.</param> void AddParts(IEnumerable<IChannel> channels); /// <summary> - /// Gets the channel download path. - /// </summary> - /// <value>The channel download path.</value> - string ChannelDownloadPath { get; } - - /// <summary> /// Gets the channel features. /// </summary> /// <param name="id">The identifier.</param> @@ -115,10 +108,9 @@ namespace MediaBrowser.Controller.Channels /// Gets the channel item media sources. /// </summary> /// <param name="item">The item.</param> - /// <param name="includeCachedVersions">if set to <c>true</c> [include cached versions].</param> /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task{IEnumerable{MediaSourceInfo}}.</returns> - Task<IEnumerable<MediaSourceInfo>> GetStaticMediaSources(BaseItem item, bool includeCachedVersions, CancellationToken cancellationToken); + Task<IEnumerable<MediaSourceInfo>> GetStaticMediaSources(BaseItem item, CancellationToken cancellationToken); /// <summary> /// Gets the channel folder. |
