Skip to content

Commit

Permalink
Merge pull request grpc#5375 from jtattermusch/grpcpreconditions_fix
Browse files Browse the repository at this point in the history
Fix C# build
  • Loading branch information
vjpai committed Feb 23, 2016
2 parents 953e41a + a493353 commit 73979f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/csharp/Grpc.IntegrationTesting/WorkerServiceImpl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public class WorkerServiceImpl : WorkerService.IWorkerService

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)
Expand Down

0 comments on commit 73979f4

Please sign in to comment.