aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2019-08-18 03:19:27 -0700
committerGitHub <noreply@github.com>2019-08-18 03:19:27 -0700
commit25a590e8cd5305ea04ecea723e1b1d13a83203ac (patch)
tree94737aba34a263a1f864293c4cc8c70999e3ca87 /MediaBrowser.Model
parent6766e04dd6d75acdd59e2612dea99bcaeb080cde (diff)
parentdc662beefeb918b6ae967acb9849a2856cfc3672 (diff)
Merge pull request #1636 from Bond-009/isomounter
Add analysers to Emby.IsoMounting and enable TreatWarningsAsErrors
Diffstat (limited to 'MediaBrowser.Model')
-rw-r--r--MediaBrowser.Model/IO/IIsoManager.cs2
-rw-r--r--MediaBrowser.Model/IO/IIsoMounter.cs2
-rw-r--r--MediaBrowser.Model/Plugins/BasePluginConfiguration.cs2
3 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Model/IO/IIsoManager.cs b/MediaBrowser.Model/IO/IIsoManager.cs
index 24b6e5f054..eb0cb4bfbb 100644
--- a/MediaBrowser.Model/IO/IIsoManager.cs
+++ b/MediaBrowser.Model/IO/IIsoManager.cs
@@ -6,7 +6,7 @@ using System.Threading.Tasks;
namespace MediaBrowser.Model.IO
{
- public interface IIsoManager : IDisposable
+ public interface IIsoManager
{
/// <summary>
/// Mounts the specified iso path.
diff --git a/MediaBrowser.Model/IO/IIsoMounter.cs b/MediaBrowser.Model/IO/IIsoMounter.cs
index f0153a9280..766a9e4e6c 100644
--- a/MediaBrowser.Model/IO/IIsoMounter.cs
+++ b/MediaBrowser.Model/IO/IIsoMounter.cs
@@ -5,7 +5,7 @@ using System.Threading.Tasks;
namespace MediaBrowser.Model.IO
{
- public interface IIsoMounter : IDisposable
+ public interface IIsoMounter
{
/// <summary>
/// Mounts the specified iso path.
diff --git a/MediaBrowser.Model/Plugins/BasePluginConfiguration.cs b/MediaBrowser.Model/Plugins/BasePluginConfiguration.cs
index 39db22133e..ac540782cc 100644
--- a/MediaBrowser.Model/Plugins/BasePluginConfiguration.cs
+++ b/MediaBrowser.Model/Plugins/BasePluginConfiguration.cs
@@ -1,7 +1,7 @@
namespace MediaBrowser.Model.Plugins
{
/// <summary>
- /// Class BasePluginConfiguration
+ /// Class BasePluginConfiguration.
/// </summary>
public class BasePluginConfiguration
{