@@ -303,7 +303,6 @@ inline Environment::Environment(IsolateData* isolate_data,
303303#endif
304304 handle_cleanup_waiting_ (0 ),
305305 http_parser_buffer_(nullptr ),
306- http2_socket_buffer_(nullptr ),
307306 fs_stats_field_array_(nullptr ),
308307 context_(context->GetIsolate (), context) {
309308 // We'll be creating new objects so make sure we've entered the context.
@@ -330,7 +329,6 @@ inline Environment::~Environment() {
330329 delete[] heap_statistics_buffer_;
331330 delete[] heap_space_statistics_buffer_;
332331 delete[] http_parser_buffer_;
333- delete[] http2_socket_buffer_;
334332}
335333
336334inline v8::Isolate* Environment::isolate () const {
@@ -489,15 +487,6 @@ inline void Environment::set_fs_stats_field_array(double* fields) {
489487 fs_stats_field_array_ = fields;
490488}
491489
492- inline char * Environment::http2_socket_buffer () const {
493- return http2_socket_buffer_;
494- }
495-
496- inline void Environment::set_http2_socket_buffer (char * buffer) {
497- CHECK_EQ (http2_socket_buffer_, nullptr ); // Should be set only once.
498- http2_socket_buffer_ = buffer;
499- }
500-
501490inline IsolateData* Environment::isolate_data () const {
502491 return isolate_data_;
503492}
0 commit comments