Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/env-inl.h')
-rw-r--r--src/env-inl.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/env-inl.h b/src/env-inl.h
index d81ea0fb95d..a2c26b182bb 100644
--- a/src/env-inl.h
+++ b/src/env-inl.h
@@ -580,23 +580,6 @@ inline double Environment::get_default_trigger_async_id() {
return default_trigger_async_id;
}
-inline char* Environment::http_parser_buffer() const {
- return http_parser_buffer_;
-}
-
-inline void Environment::set_http_parser_buffer(char* buffer) {
- CHECK_NULL(http_parser_buffer_); // Should be set only once.
- http_parser_buffer_ = buffer;
-}
-
-inline bool Environment::http_parser_buffer_in_use() const {
- return http_parser_buffer_in_use_;
-}
-
-inline void Environment::set_http_parser_buffer_in_use(bool in_use) {
- http_parser_buffer_in_use_ = in_use;
-}
-
inline AliasedFloat64Array* Environment::fs_stats_field_array() {
return &fs_stats_field_array_;
}