mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-16 13:15:03 +00:00
chore: add missing curly brace
This commit is contained in:
@@ -20,7 +20,7 @@ namespace PepperDash.Essentials.Core.Routing
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public class ReleaseRouteQueueItem: IQueueMessage
|
public class ReleaseRouteQueueItem : IQueueMessage
|
||||||
{
|
{
|
||||||
private readonly Action<IRoutingInputs, string> action;
|
private readonly Action<IRoutingInputs, string> action;
|
||||||
private readonly IRoutingInputs destination;
|
private readonly IRoutingInputs destination;
|
||||||
@@ -33,7 +33,9 @@ namespace PepperDash.Essentials.Core.Routing
|
|||||||
this.inputPortKey = inputPortKey;
|
this.inputPortKey = inputPortKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Dispatch() {
|
public void Dispatch()
|
||||||
|
{
|
||||||
action(destination, inputPortKey);
|
action(destination, inputPortKey);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user