remove redundant type parameter

This commit is contained in:
Paul Pacheco 2019-11-03 11:34:46 -06:00 committed by vis2k
parent 1531281516
commit 236dcb6734

View File

@ -592,7 +592,7 @@ public static void RegisterHandler(MsgType msgType, NetworkMessageDelegate handl
{
if (LogFilter.Debug) Debug.Log("NetworkServer.RegisterHandler replacing " + msgType);
}
handlers[msgType] = MessagePacker.MessageHandler<T>(handler, requireAuthentication);
handlers[msgType] = MessagePacker.MessageHandler(handler, requireAuthentication);
}
/// <summary>