From cd7e3137da7e3304e86063bcc680eedea57e761c Mon Sep 17 00:00:00 2001 From: Jan Tattermusch <jtattermusch@google.com> Date: Thu, 7 May 2015 15:10:23 -0700 Subject: [PATCH] add newline to the end of generated files --- src/compiler/csharp_generator.cc | 2 +- src/csharp/Grpc.Examples/MathGrpc.cs | 2 +- src/csharp/Grpc.IntegrationTesting/TestGrpc.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/compiler/csharp_generator.cc b/src/compiler/csharp_generator.cc index cc8f5bda71..b139c06014 100644 --- a/src/compiler/csharp_generator.cc +++ b/src/compiler/csharp_generator.cc @@ -489,7 +489,7 @@ grpc::string GetServices(const FileDescriptor *file) { } out.Outdent(); out.Print("}\n"); - out.Print("#endregion"); + out.Print("#endregion\n"); return output; } diff --git a/src/csharp/Grpc.Examples/MathGrpc.cs b/src/csharp/Grpc.Examples/MathGrpc.cs index db680c3da9..2546fd220d 100644 --- a/src/csharp/Grpc.Examples/MathGrpc.cs +++ b/src/csharp/Grpc.Examples/MathGrpc.cs @@ -119,4 +119,4 @@ namespace math { } } } -#endregion \ No newline at end of file +#endregion diff --git a/src/csharp/Grpc.IntegrationTesting/TestGrpc.cs b/src/csharp/Grpc.IntegrationTesting/TestGrpc.cs index f232bdc4da..679aafb57a 100644 --- a/src/csharp/Grpc.IntegrationTesting/TestGrpc.cs +++ b/src/csharp/Grpc.IntegrationTesting/TestGrpc.cs @@ -156,4 +156,4 @@ namespace grpc.testing { } } } -#endregion \ No newline at end of file +#endregion -- GitLab