Remove unused event

This commit is contained in:
Dan Balasescu 2021-12-03 20:35:47 +09:00
parent f4e07f1483
commit 9acc0556a4
1 changed files with 1 additions and 6 deletions

View File

@ -26,15 +26,10 @@ public class LegacyTcpIpcProvider : TcpIpcProvider
{
private static readonly Logger logger = Logger.GetLogger("legacy-ipc");
/// <summary>
/// Invoked when a message is received from a legacy client.
/// </summary>
public new Func<object, object>? MessageReceived;
public LegacyTcpIpcProvider()
: base(45357)
{
base.MessageReceived += msg =>
MessageReceived += msg =>
{
try
{