Jan Tattermusch 6 жил өмнө
parent
commit
dce5408b84

+ 2 - 2
src/compiler/csharp_generator.cc

@@ -437,8 +437,8 @@ void GenerateClientStub(Printer* out, const ServiceDescriptor* service,
         "/// <param name=\"channel\">The channel to use to make remote "
         "calls.</param>\n",
         "servicename", GetServiceClassName(service));
-    out->Print("public $name$(grpc::ChannelBase channel) : base(channel)\n", "name",
-               GetClientClassName(service));
+    out->Print("public $name$(grpc::ChannelBase channel) : base(channel)\n",
+               "name", GetClientClassName(service));
     out->Print("{\n");
     out->Print("}\n");
   }