aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Examples.MathClient
diff options
context:
space:
mode:
authorGravatar Michael Lumish <mlumish@google.com>2016-04-07 15:37:40 -0700
committerGravatar Michael Lumish <mlumish@google.com>2016-04-07 15:37:40 -0700
commitd0d22a6d08c6052a3186a3b448919f7c02b98ba1 (patch)
tree116a671a52c92c9a47602c1bbdf8e825a26a0910 /src/csharp/Grpc.Examples.MathClient
parentc2ec738f6937ccffbfa0887ba238f5dc1df3304f (diff)
parentd6ac251d4be334d7e13cfedb6181c161fdf05c41 (diff)
Merge branch 'master' into binary_logging
Diffstat (limited to 'src/csharp/Grpc.Examples.MathClient')
-rw-r--r--src/csharp/Grpc.Examples.MathClient/MathClient.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/csharp/Grpc.Examples.MathClient/MathClient.cs b/src/csharp/Grpc.Examples.MathClient/MathClient.cs
index 64e429ed5a..aadef6833d 100644
--- a/src/csharp/Grpc.Examples.MathClient/MathClient.cs
+++ b/src/csharp/Grpc.Examples.MathClient/MathClient.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
@@ -40,7 +40,7 @@ namespace Math
public static void Main(string[] args)
{
var channel = new Channel("127.0.0.1", 23456, ChannelCredentials.Insecure);
- Math.IMathClient client = new Math.MathClient(channel);
+ Math.MathClient client = new Math.MathClient(channel);
MathExamples.DivExample(client);
MathExamples.DivAsyncExample(client).Wait();