diff --git a/Mirror/Runtime/NetworkBehaviour.cs b/Mirror/Runtime/NetworkBehaviour.cs index 9728a4a5e..20dc905f9 100644 --- a/Mirror/Runtime/NetworkBehaviour.cs +++ b/Mirror/Runtime/NetworkBehaviour.cs @@ -255,17 +255,6 @@ protected static void RegisterEventDelegate(Type invokeClass, string eventName, if (LogFilter.Debug) { Debug.Log("RegisterEventDelegate hash:" + eventHash + " " + func.GetMethodName()); } } - internal static string GetInvoker(int cmdHash) - { - if (!s_CmdHandlerDelegates.ContainsKey(cmdHash)) - { - return null; - } - - Invoker inv = s_CmdHandlerDelegates[cmdHash]; - return inv.DebugString(); - } - // wrapper fucntions for each type of network operation internal static bool GetInvokerForHashCommand(int cmdHash, out CmdDelegate invokeFunction) {