aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc++/impl/call.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/grpc++/impl/call.h')
-rw-r--r--include/grpc++/impl/call.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/grpc++/impl/call.h b/include/grpc++/impl/call.h
index 5fafd0e890..a1ef9268f0 100644
--- a/include/grpc++/impl/call.h
+++ b/include/grpc++/impl/call.h
@@ -134,16 +134,7 @@ class Call final {
grpc_call *call() { return call_; }
CompletionQueue *cq() { return cq_; }
- // TODO(yangg) change it to a general state query function.
- bool initial_metadata_received() {
- return initial_metadata_received_;
- }
- void set_initial_metadata_received() {
- initial_metadata_received_ = true;
- }
-
private:
- bool initial_metadata_received_ = false;
CallHook *call_hook_;
CompletionQueue *cq_;
grpc_call* call_;