Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions dotnet/test/Unit/JsonRpcTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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]);

Expand Down
Loading