Skip to content
Snippets Groups Projects
Commit 73979f4f authored by Vijay Pai's avatar Vijay Pai
Browse files

Merge pull request #5375 from jtattermusch/grpcpreconditions_fix

Fix C# build
parents 953e41a0 a4933532
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ namespace Grpc.Testing
public WorkerServiceImpl(Action stopRequestHandler)
{
this.stopRequestHandler = Grpc.Core.Utils.Preconditions.CheckNotNull(stopRequestHandler);
this.stopRequestHandler = GrpcPreconditions.CheckNotNull(stopRequestHandler);
}
public async Task RunServer(IAsyncStreamReader<ServerArgs> requestStream, IServerStreamWriter<ServerStatus> responseStream, ServerCallContext context)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment