From b62168a62685dada3a791b0cee01812b2997cd9c Mon Sep 17 00:00:00 2001 From: Haiping Chen Date: Mon, 25 Nov 2024 19:22:08 -0600 Subject: [PATCH] remove unnecessary function --- .../BotSharp.Core/Routing/Reasoning/SequentialReasoner.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Infrastructure/BotSharp.Core/Routing/Reasoning/SequentialReasoner.cs b/src/Infrastructure/BotSharp.Core/Routing/Reasoning/SequentialReasoner.cs index 33344c8d..959747db 100644 --- a/src/Infrastructure/BotSharp.Core/Routing/Reasoning/SequentialReasoner.cs +++ b/src/Infrastructure/BotSharp.Core/Routing/Reasoning/SequentialReasoner.cs @@ -234,9 +234,4 @@ public class SequentialReasoner : IRoutingReasoner { }); } - - public Task GetNextInstruction(Agent router, string messageId) - { - throw new NotImplementedException(); - } }