aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.HealthCheck/HealthServiceImpl.cs
diff options
context:
space:
mode:
authorGravatar Michael Lumish <mlumish@google.com>2016-02-18 16:19:37 -0800
committerGravatar Michael Lumish <mlumish@google.com>2016-02-18 16:19:37 -0800
commit835ed8d5d9ed68879632fdb0944863127cd316b3 (patch)
treec794f1a05c9c933bd04ebe844e9a7a78b01e8359 /src/csharp/Grpc.HealthCheck/HealthServiceImpl.cs
parent1fd052f43c6d12fa451309264dc7fec2e4faccd7 (diff)
parent0f892567ee54651857368d26e89dc36bd5dea240 (diff)
Merge pull request #5309 from jtattermusch/csharp_rename_preconditions
Rename C# Preconditions to GrpcPreconditions
Diffstat (limited to 'src/csharp/Grpc.HealthCheck/HealthServiceImpl.cs')
-rw-r--r--src/csharp/Grpc.HealthCheck/HealthServiceImpl.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/csharp/Grpc.HealthCheck/HealthServiceImpl.cs b/src/csharp/Grpc.HealthCheck/HealthServiceImpl.cs
index 26c6445c35..e2ad1a834b 100644
--- a/src/csharp/Grpc.HealthCheck/HealthServiceImpl.cs
+++ b/src/csharp/Grpc.HealthCheck/HealthServiceImpl.cs
@@ -1,5 +1,5 @@
#region Copyright notice and license
-// Copyright 2015, Google Inc.
+// Copyright 2015-2016, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
@@ -127,8 +127,8 @@ namespace Grpc.HealthCheck
{
public Key(string host, string service)
{
- this.Host = Preconditions.CheckNotNull(host);
- this.Service = Preconditions.CheckNotNull(service);
+ this.Host = GrpcPreconditions.CheckNotNull(host);
+ this.Service = GrpcPreconditions.CheckNotNull(service);
}
readonly string Host;