chore: add missing curly brace

This commit is contained in:
Andrew Welker
2025-02-19 11:10:35 -06:00
parent d53a5607e2
commit 66cb592c70

View File

@@ -33,7 +33,9 @@ namespace PepperDash.Essentials.Core.Routing
this.inputPortKey = inputPortKey;
}
public void Dispatch() {
public void Dispatch()
{
action(destination, inputPortKey);
}
}
}