aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-02-05 18:25:19 -0800
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-02-05 18:26:05 -0800
commitcaa361466c5144878d8053fc8844b3fa816c5981 (patch)
tree12adaaa2d1cb080a228cd921ac7b67e71793f815 /src
parenta3b659c3ae248beeda86f7057dbb27460f2626c0 (diff)
removed outdated comment
Diffstat (limited to 'src')
-rw-r--r--src/csharp/GrpcCore/Call.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/csharp/GrpcCore/Call.cs b/src/csharp/GrpcCore/Call.cs
index 735d1c544f..d3847a8009 100644
--- a/src/csharp/GrpcCore/Call.cs
+++ b/src/csharp/GrpcCore/Call.cs
@@ -10,7 +10,6 @@ namespace Google.GRPC.Core
readonly Func<byte[], TResponse> responseDeserializer;
readonly Channel channel;
- // TODO: channel param should be removed in the future.
public Call(string methodName,
Func<TRequest, byte[]> requestSerializer,
Func<byte[], TResponse> responseDeserializer,
@@ -22,7 +21,6 @@ namespace Google.GRPC.Core
this.channel = channel;
}
- // TODO: channel param should be removed in the future.
public Call(Method<TRequest, TResponse> method, Channel channel)
{
this.methodName = method.Name;