diff options
| author | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-07-12 23:50:50 -0400 |
|---|---|---|
| committer | LukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com> | 2012-07-12 23:50:50 -0400 |
| commit | 5f5f2838b1931a2cf426b778755a417cc662b46f (patch) | |
| tree | 007597d0ba7bc2d992f909c9876744d80cc31b42 /MediaBrowser.Common/Plugins/BasePlugin.cs | |
| parent | 572103cdfe9fdf15ac881a104537047b3ca928ea (diff) | |
moved the http server to common, added more http handlers
Diffstat (limited to 'MediaBrowser.Common/Plugins/BasePlugin.cs')
| -rw-r--r-- | MediaBrowser.Common/Plugins/BasePlugin.cs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/MediaBrowser.Common/Plugins/BasePlugin.cs b/MediaBrowser.Common/Plugins/BasePlugin.cs index fb37afa08..fc05cbc9a 100644 --- a/MediaBrowser.Common/Plugins/BasePlugin.cs +++ b/MediaBrowser.Common/Plugins/BasePlugin.cs @@ -7,7 +7,7 @@ using MediaBrowser.Common.Json; namespace MediaBrowser.Common.Plugins
{
- public abstract class BasePlugin<TConfigurationType> : IDisposable, IPlugin
+ public abstract class BasePlugin<TConfigurationType> : IPlugin
where TConfigurationType : BasePluginConfiguration, new()
{
public string Path { get; set; }
@@ -33,10 +33,6 @@ namespace MediaBrowser.Common.Plugins protected abstract void InitInternal();
- public virtual void Dispose()
- {
- }
-
private TConfigurationType GetConfiguration()
{
if (!File.Exists(ConfigurationPath))
@@ -53,6 +49,5 @@ namespace MediaBrowser.Common.Plugins string Path { get; set; }
void Init();
- void Dispose();
}
}
|
