aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-02-23 10:45:58 -0800
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-02-23 10:45:58 -0800
commita49335326cf674b1d74fde8777e410aa588ddc1f (patch)
tree9571fa09614ffc0fa4d424f8ae83abc4d37d8b6f /src
parent4938274d479d7480c993c4e6ffb32a0d8dd95eb8 (diff)
fix C# build
Diffstat (limited to 'src')
-rw-r--r--src/csharp/Grpc.IntegrationTesting/WorkerServiceImpl.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.IntegrationTesting/WorkerServiceImpl.cs b/src/csharp/Grpc.IntegrationTesting/WorkerServiceImpl.cs
index ad0c53a325..cab299a137 100644
--- a/src/csharp/Grpc.IntegrationTesting/WorkerServiceImpl.cs
+++ b/src/csharp/Grpc.IntegrationTesting/WorkerServiceImpl.cs
@@ -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)