From 9acbb5a460e208c466d88edbbe04e3f3a064758c Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Sun, 20 Sep 2026 16:16:16 -0400 Subject: [PATCH] fix(dotnet): remove duplicate JSON-RPC completion helper Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- dotnet/test/Unit/JsonRpcTests.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/dotnet/test/Unit/JsonRpcTests.cs b/dotnet/test/Unit/JsonRpcTests.cs index f8bf44d6b1..2eeefa19ad 100644 --- a/dotnet/test/Unit/JsonRpcTests.cs +++ b/dotnet/test/Unit/JsonRpcTests.cs @@ -404,8 +404,6 @@ public JsonRpcReflection(Stream sendStream, Stream receiveStream) public void StartListening() => JsonRpcType.GetMethod(nameof(StartListening))!.Invoke(_instance, null); - public Task Completion => (Task)JsonRpcType.GetProperty(nameof(Completion))!.GetValue(_instance)!; - public void SetLocalRpcMethod(string methodName, Delegate handler, bool singleObjectParam = false) => JsonRpcType.GetMethod("SetLocalRpcMethod")!.Invoke(_instance, [methodName, handler, singleObjectParam]);