diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-21 15:26:35 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-21 15:26:55 -0500 |
| commit | ab1065a567151fd45fcf4698cd7d18708b94e35f (patch) | |
| tree | 1863297fbd2966ceea85bc2a6c1991c5bab2c589 /MediaBrowser.Controller/Providers/TV/EpisodeXmlParser.cs | |
| parent | 4019b9260bc1bcf23adb856cbd2b9857575fd08f (diff) | |
removed static logger
Diffstat (limited to 'MediaBrowser.Controller/Providers/TV/EpisodeXmlParser.cs')
| -rw-r--r-- | MediaBrowser.Controller/Providers/TV/EpisodeXmlParser.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Providers/TV/EpisodeXmlParser.cs b/MediaBrowser.Controller/Providers/TV/EpisodeXmlParser.cs index 7133d8745..4b8219e00 100644 --- a/MediaBrowser.Controller/Providers/TV/EpisodeXmlParser.cs +++ b/MediaBrowser.Controller/Providers/TV/EpisodeXmlParser.cs @@ -1,4 +1,5 @@ using MediaBrowser.Controller.Entities.TV; +using MediaBrowser.Model.Logging; using System.IO; using System.Xml; @@ -10,6 +11,15 @@ namespace MediaBrowser.Controller.Providers.TV public class EpisodeXmlParser : BaseItemXmlParser<Episode> { /// <summary> + /// Initializes a new instance of the <see cref="EpisodeXmlParser" /> class. + /// </summary> + /// <param name="logger">The logger.</param> + public EpisodeXmlParser(ILogger logger) + : base(logger) + { + } + + /// <summary> /// Fetches the data from XML node. /// </summary> /// <param name="reader">The reader.</param> |
