diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-07-10 10:09:02 -0600 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2021-07-10 10:09:02 -0600 |
| commit | 65f8d8c0cd6cf64cebcbc0cc9279d9857ebf343c (patch) | |
| tree | 005197f12671ec838186369579951b236c8e4650 /MediaBrowser.Controller/LiveTv | |
| parent | 4281722d5a50347c26ee92dcd47b3bbad5cedbbf (diff) | |
[CA1801] Parameter is never used. Remove the parameter or use it in the method body.
Diffstat (limited to 'MediaBrowser.Controller/LiveTv')
| -rw-r--r-- | MediaBrowser.Controller/LiveTv/LiveTvChannel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs b/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs index 1a893fc2d0..ecd3d10d98 100644 --- a/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs +++ b/MediaBrowser.Controller/LiveTv/LiveTvChannel.cs @@ -82,7 +82,7 @@ namespace MediaBrowser.Controller.LiveTv return "TvChannel"; } - public IEnumerable<BaseItem> GetTaggedItems(IEnumerable<BaseItem> inputItems) + public IEnumerable<BaseItem> GetTaggedItems() { return new List<BaseItem>(); } |
