Make PluginBase a singleton.

This commit is contained in:
2022-12-17 20:50:17 +00:00
parent f5f9dc1ad4
commit 7a2b37496b
24 changed files with 194 additions and 105 deletions

View File

@@ -31,7 +31,6 @@
// ****************************************************************************/
using System;
using Aaru.CommonTypes;
using Aaru.CommonTypes.Interfaces;
using Aaru.Console;
@@ -47,7 +46,7 @@ public static class ImageFormat
{
try
{
PluginBase plugins = GetPluginBase.Instance;
PluginBase plugins = PluginBase.Singleton;
IBaseImage imageFormat = null;