From 4a71a0d4900ac8bc912aef8b8c0f6e48d176f431 Mon Sep 17 00:00:00 2001 From: Raymond Date: Mon, 23 Aug 2021 12:43:23 -0400 Subject: [PATCH] CallGate should not be registered. --- Dalamud/Plugin/CallGate.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dalamud/Plugin/CallGate.cs b/Dalamud/Plugin/CallGate.cs index 3e257805e..9a643308c 100644 --- a/Dalamud/Plugin/CallGate.cs +++ b/Dalamud/Plugin/CallGate.cs @@ -2,8 +2,6 @@ using System; using System.Collections.Generic; using System.Linq; -using Dalamud.IoC; -using Dalamud.IoC.Internal; using Serilog; #pragma warning disable SA1201 // Elements should appear in the correct order @@ -14,9 +12,7 @@ namespace Dalamud.Plugin /// /// This class facilitates inter-plugin communication. /// - [PluginInterface] - [InterfaceVersion("1.0")] - public class CallGate + internal class CallGate { private Dictionary gates = new();