summaryrefslogtreecommitdiff
path: root/src/node_http_parser.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_http_parser.cc')
-rw-r--r--src/node_http_parser.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/node_http_parser.cc b/src/node_http_parser.cc
index 085f4494e3..d6f9b110c3 100644
--- a/src/node_http_parser.cc
+++ b/src/node_http_parser.cc
@@ -151,16 +151,10 @@ class Parser : public AsyncWrap, public StreamListener {
: AsyncWrap(env, wrap, AsyncWrap::PROVIDER_HTTPPARSER),
current_buffer_len_(0),
current_buffer_data_(nullptr) {
- Wrap(object(), this);
Init(type);
}
- ~Parser() override {
- ClearWrap(object());
- }
-
-
size_t self_size() const override {
return sizeof(*this);
}