aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Examples.MathServer
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-05-07 14:34:45 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-05-07 14:50:46 -0700
commit085533e1dc74ba7d2b41cce52118a0aa4010d7b9 (patch)
tree6ca8dd33e076f71051a8299f6a07a0dd92668345 /src/csharp/Grpc.Examples.MathServer
parent7eb3a76279d60c995944ba4cf1bb6b6447697011 (diff)
Replace handwritten math stub by the generated one
Diffstat (limited to 'src/csharp/Grpc.Examples.MathServer')
-rw-r--r--src/csharp/Grpc.Examples.MathServer/MathServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Examples.MathServer/MathServer.cs b/src/csharp/Grpc.Examples.MathServer/MathServer.cs
index cfde9b42c7..d05e3f2808 100644
--- a/src/csharp/Grpc.Examples.MathServer/MathServer.cs
+++ b/src/csharp/Grpc.Examples.MathServer/MathServer.cs
@@ -45,7 +45,7 @@ namespace math
GrpcEnvironment.Initialize();
Server server = new Server();
- server.AddServiceDefinition(MathGrpc.BindService(new MathServiceImpl()));
+ server.AddServiceDefinition(Math.BindService(new MathServiceImpl()));
int port = server.AddListeningPort(host, 23456);
server.Start();