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.IsoMounter/PismoIsoManager.cs | |
| parent | 4019b9260bc1bcf23adb856cbd2b9857575fd08f (diff) | |
removed static logger
Diffstat (limited to 'MediaBrowser.IsoMounter/PismoIsoManager.cs')
| -rw-r--r-- | MediaBrowser.IsoMounter/PismoIsoManager.cs | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/MediaBrowser.IsoMounter/PismoIsoManager.cs b/MediaBrowser.IsoMounter/PismoIsoManager.cs index 3ad3a413e..4d22a71dd 100644 --- a/MediaBrowser.IsoMounter/PismoIsoManager.cs +++ b/MediaBrowser.IsoMounter/PismoIsoManager.cs @@ -71,16 +71,22 @@ namespace MediaBrowser.IsoMounter /// </summary> /// <value>The logger.</value> private ILogger Logger { get; set; } - + + /// <summary> + /// Initializes a new instance of the <see cref="PismoIsoManager" /> class. + /// </summary> + /// <param name="logger">The logger.</param> public PismoIsoManager(ILogger logger) { Logger = logger; + + _myPfmFileMountUi = new MyPfmFileMountUi(Logger); } /// <summary> /// The _my PFM file mount UI /// </summary> - private readonly MyPfmFileMountUi _myPfmFileMountUi = new MyPfmFileMountUi(); + private readonly MyPfmFileMountUi _myPfmFileMountUi; /// <summary> /// Mounts the specified iso path. @@ -151,6 +157,9 @@ namespace MediaBrowser.IsoMounter return new PismoMount(mount, isoPath, this, Logger); } + /// <summary> + /// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + /// </summary> public void Dispose() { Dispose(true); |
