Skip to content

Commit

Permalink
add newline to the end of generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
jtattermusch committed May 7, 2015
1 parent eb5a312 commit cd7e313
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/compiler/csharp_generator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ grpc::string GetServices(const FileDescriptor *file) {
}
out.Outdent();
out.Print("}\n");
out.Print("#endregion");
out.Print("#endregion\n");
return output;
}

Expand Down
2 changes: 1 addition & 1 deletion src/csharp/Grpc.Examples/MathGrpc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,4 @@ public static IMathClient NewStub(Channel channel, StubConfiguration config)
}
}
}
#endregion
#endregion
2 changes: 1 addition & 1 deletion src/csharp/Grpc.IntegrationTesting/TestGrpc.cs
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,4 @@ public static ITestServiceClient NewStub(Channel channel, StubConfiguration conf
}
}
}
#endregion
#endregion

0 comments on commit cd7e313

Please sign in to comment.