diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2020-11-02 11:11:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-02 11:11:17 -0500 |
| commit | b1b43b8ad9e6ecc905e1ff4270d4844494ed3039 (patch) | |
| tree | 0093f1286d6eb4e69fda5c5d830f4cfda7c7c59a /MediaBrowser.Common/Updates | |
| parent | 6205fb4b6a1208fadd93ef1d43668657db531768 (diff) | |
| parent | 8a15ad160b30769305b5cf03e16b3cec742156de (diff) | |
Merge pull request #4068 from barronpm/event-fixes
Fix Plugin Events and Clean Up InstallationManager.cs
Diffstat (limited to 'MediaBrowser.Common/Updates')
| -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 169aca2ca0..6aa16fea74 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> |
