diff options
| author | Patrick Barron <barronpm@gmail.com> | 2020-09-05 18:58:16 -0400 |
|---|---|---|
| committer | Patrick Barron <barronpm@gmail.com> | 2020-09-05 18:58:16 -0400 |
| commit | 8a15ad160b30769305b5cf03e16b3cec742156de (patch) | |
| tree | 95712bdddd57fc7324cbaaa075a650b618859f60 /MediaBrowser.Common | |
| parent | 9cffa66a015c5200e461f396cd408949591d9552 (diff) | |
Fix plugin events not being called and clean up InstallationManager.cs
Diffstat (limited to 'MediaBrowser.Common')
| -rw-r--r-- | MediaBrowser.Common/Updates/IInstallationManager.cs | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/MediaBrowser.Common/Updates/IInstallationManager.cs b/MediaBrowser.Common/Updates/IInstallationManager.cs index 4b4030bc2..1b38abb35 100644 --- a/MediaBrowser.Common/Updates/IInstallationManager.cs +++ b/MediaBrowser.Common/Updates/IInstallationManager.cs @@ -11,29 +11,6 @@ namespace MediaBrowser.Common.Updates { public interface IInstallationManager : IDisposable { - event EventHandler<InstallationInfo> PackageInstalling; - - event EventHandler<InstallationInfo> PackageInstallationCompleted; - - event EventHandler<InstallationFailedEventArgs> PackageInstallationFailed; - - event EventHandler<InstallationInfo> PackageInstallationCancelled; - - /// <summary> - /// Occurs when a plugin is uninstalled. - /// </summary> - event EventHandler<IPlugin> PluginUninstalled; - - /// <summary> - /// Occurs when a plugin is updated. - /// </summary> - event EventHandler<InstallationInfo> PluginUpdated; - - /// <summary> - /// Occurs when a plugin is installed. - /// </summary> - event EventHandler<InstallationInfo> PluginInstalled; - /// <summary> /// Gets the completed installations. /// </summary> |
