From cf893b2c58c6f7d3cbcdf39261d8b95a0cec4790 Mon Sep 17 00:00:00 2001 From: Raymond Date: Tue, 10 Aug 2021 18:15:46 -0400 Subject: [PATCH] Remove unused PluginOperationResult enum --- .../Internal/Types/PluginOperationResult.cs | 57 ------------------- 1 file changed, 57 deletions(-) delete mode 100644 Dalamud/Plugin/Internal/Types/PluginOperationResult.cs diff --git a/Dalamud/Plugin/Internal/Types/PluginOperationResult.cs b/Dalamud/Plugin/Internal/Types/PluginOperationResult.cs deleted file mode 100644 index 9ac1db611..000000000 --- a/Dalamud/Plugin/Internal/Types/PluginOperationResult.cs +++ /dev/null @@ -1,57 +0,0 @@ -using System; - -namespace Dalamud.Plugin.Internal.Types -{ - /// - /// This represents the result of a an operation taken against a plugin. - /// Loading, unloading, installation, etc. - /// - internal enum PluginOperationResult - { - /// - /// The result is unknown. Should not be used. - /// - [Obsolete("Do not use this", error: true)] - Unknown, - - /// - /// The result is pending. Take a seat and wait. - /// - Pending, - - /// - /// The operation was successful. - /// - Success, - - /// - /// During the plugin operation, an unexpected error occurred. - /// - UnknownError, - - /// - /// The plugin state was invalid for the attempted operation. - /// - InvalidState, - - /// - /// The plugin applicable version is not compativle with the currently running game. - /// - InvalidGameVersion, - - /// - /// The plugin API level is not compatible with the currently running Dalamud. - /// - InvalidApiLevel, - - /// - /// During loading, the current plugin was marked as disabled. - /// - InvalidStateDisabled, - - /// - /// During loading, another plugin was detected with the same internal name. - /// - InvalidStateDuplicate, - } -}