Browse Source

src: remove unused http2_socket_buffer from env

PR-URL: https://github.com/nodejs/node/pull/14740
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
v6
Anna Henningsen 7 years ago
parent
commit
1419533df9
No known key found for this signature in database GPG Key ID: D8B9F5AEAE84E4CF
  1. 11
      src/env-inl.h
  2. 3
      src/env.h

11
src/env-inl.h

@ -302,7 +302,6 @@ inline Environment::Environment(IsolateData* isolate_data,
#endif
handle_cleanup_waiting_(0),
http_parser_buffer_(nullptr),
http2_socket_buffer_(nullptr),
fs_stats_field_array_(nullptr),
context_(context->GetIsolate(), context) {
// We'll be creating new objects so make sure we've entered the context.
@ -329,7 +328,6 @@ inline Environment::~Environment() {
delete[] heap_statistics_buffer_;
delete[] heap_space_statistics_buffer_;
delete[] http_parser_buffer_;
delete[] http2_socket_buffer_;
}
inline v8::Isolate* Environment::isolate() const {
@ -488,15 +486,6 @@ inline void Environment::set_fs_stats_field_array(double* fields) {
fs_stats_field_array_ = fields;
}
inline char* Environment::http2_socket_buffer() const {
return http2_socket_buffer_;
}
inline void Environment::set_http2_socket_buffer(char* buffer) {
CHECK_EQ(http2_socket_buffer_, nullptr); // Should be set only once.
http2_socket_buffer_ = buffer;
}
inline IsolateData* Environment::isolate_data() const {
return isolate_data_;
}

3
src/env.h

@ -598,8 +598,6 @@ class Environment {
inline char* http_parser_buffer() const;
inline void set_http_parser_buffer(char* buffer);
inline char* http2_socket_buffer() const;
inline void set_http2_socket_buffer(char* buffer);
inline double* fs_stats_field_array() const;
inline void set_fs_stats_field_array(double* fields);
@ -707,7 +705,6 @@ class Environment {
double* heap_space_statistics_buffer_ = nullptr;
char* http_parser_buffer_;
char* http2_socket_buffer_;
double* fs_stats_field_array_;

Loading…
Cancel
Save