浏览代码

clang format code

Jan Tattermusch 6 年之前
父节点
当前提交
dce5408b84
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/compiler/csharp_generator.cc

+ 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");
   }