diff options
author | Tim Emiola <tbetbetbe@users.noreply.github.com> | 2015-05-01 12:00:01 -0400 |
---|---|---|
committer | Tim Emiola <tbetbetbe@users.noreply.github.com> | 2015-05-01 12:00:01 -0400 |
commit | 915b4ef6446cc11ea7fc75224cbe8b5bbc86d192 (patch) | |
tree | 57223c99f3becca98fc49c2d950b7a04c1d86e8a | |
parent | 9da3be5112fb68e43f38c63b52817acb93c6f3be (diff) | |
parent | a9a3e884fe6793f1133dfebb5c934f4ead521b02 (diff) |
Merge pull request #1442 from jtattermusch/csharp_kill_unused_function
remove unused function from grpc_csharp_ext
-rw-r--r-- | src/csharp/ext/grpc_csharp_ext.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/csharp/ext/grpc_csharp_ext.c b/src/csharp/ext/grpc_csharp_ext.c index e182468d9b..fb8b75798d 100644 --- a/src/csharp/ext/grpc_csharp_ext.c +++ b/src/csharp/ext/grpc_csharp_ext.c @@ -415,16 +415,6 @@ GPR_EXPORT void GPR_CALLTYPE grpcsharp_call_destroy(grpc_call *call) { grpc_call_destroy(call); } -GPR_EXPORT void GPR_CALLTYPE -grpcsharp_call_start_write_from_copied_buffer(grpc_call *call, - const char *buffer, size_t len, - void *tag, gpr_uint32 flags) { - grpc_byte_buffer *byte_buffer = string_to_byte_buffer(buffer, len); - GPR_ASSERT(grpc_call_start_write_old(call, byte_buffer, tag, flags) == - GRPC_CALL_OK); - grpc_byte_buffer_destroy(byte_buffer); -} - GPR_EXPORT grpc_call_error GPR_CALLTYPE grpcsharp_call_start_unary(grpc_call *call, callback_funcptr callback, const char *send_buffer, size_t send_buffer_len, |