aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Examples.MathServer
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-06-12 13:03:05 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-07-10 22:18:16 -0700
commit04eb89ca26164cb545bc75e6d585ac396b580d84 (patch)
treeccaaa897c7a6aef072ce216b2b66ef35d39e92b1 /src/csharp/Grpc.Examples.MathServer
parentaa91ad2c8d824615f198be659b6987f5dd150161 (diff)
no need to call GrpcEnvironment.Initialize() explicitly
Diffstat (limited to 'src/csharp/Grpc.Examples.MathServer')
-rw-r--r--src/csharp/Grpc.Examples.MathServer/MathServer.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/csharp/Grpc.Examples.MathServer/MathServer.cs b/src/csharp/Grpc.Examples.MathServer/MathServer.cs
index d05e3f2808..f440985112 100644
--- a/src/csharp/Grpc.Examples.MathServer/MathServer.cs
+++ b/src/csharp/Grpc.Examples.MathServer/MathServer.cs
@@ -42,8 +42,6 @@ namespace math
{
string host = "0.0.0.0";
- GrpcEnvironment.Initialize();
-
Server server = new Server();
server.AddServiceDefinition(Math.BindService(new MathServiceImpl()));
int port = server.AddListeningPort(host, 23456);