From 9b7362c460c0bd3073fd96c0151f4b670fece27a Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Thu, 15 Aug 2019 15:49:34 +0200 Subject: http2: remove unused FlushData() function MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/29145 Reviewed-By: Michaƫl Zasso Reviewed-By: Colin Ihrig Reviewed-By: Jiawen Geng Reviewed-By: Luigi Pinca Reviewed-By: Rich Trott Reviewed-By: Trivikram Kamat Reviewed-By: James M Snell --- src/node_http2.cc | 9 --------- 1 file changed, 9 deletions(-) (limited to 'src/node_http2.cc') diff --git a/src/node_http2.cc b/src/node_http2.cc index 8cb1158b55..38686dc750 100644 --- a/src/node_http2.cc +++ b/src/node_http2.cc @@ -2723,14 +2723,6 @@ void Http2Stream::Destroy(const FunctionCallbackInfo& args) { stream->Destroy(); } -// Prompt the Http2Stream to begin sending data to the JS land. -void Http2Stream::FlushData(const FunctionCallbackInfo& args) { - Http2Stream* stream; - ASSIGN_OR_RETURN_UNWRAP(&stream, args.Holder()); - stream->ReadStart(); - Debug(stream, "data flushed to js"); -} - // Initiate a Push Promise and create the associated Http2Stream void Http2Stream::PushPromise(const FunctionCallbackInfo& args) { Environment* env = Environment::GetCurrent(args); @@ -3129,7 +3121,6 @@ void Initialize(Local target, stream->SetClassName(FIXED_ONE_BYTE_STRING(env->isolate(), "Http2Stream")); env->SetProtoMethod(stream, "id", Http2Stream::GetID); env->SetProtoMethod(stream, "destroy", Http2Stream::Destroy); - env->SetProtoMethod(stream, "flushData", Http2Stream::FlushData); env->SetProtoMethod(stream, "priority", Http2Stream::Priority); env->SetProtoMethod(stream, "pushPromise", Http2Stream::PushPromise); env->SetProtoMethod(stream, "info", Http2Stream::Info); -- cgit v1.2.3