diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2013-08-07 18:03:13 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2013-08-07 18:03:14 +0200 |
commit | d24decb87ba736a33234713c1d824c9d05b48cce (patch) | |
tree | 5b7eeeeeb0177c8272e9948c943215d297f4a245 /src/udp_wrap.cc | |
parent | 54a9ec4ef09f51c0903af515aa2404922d9f73f0 (diff) | |
download | node-new-d24decb87ba736a33234713c1d824c9d05b48cce.tar.gz |
src: remove no-op HandleWrap::Initialize()
It's never been used and we probably never will. Remove it.
Diffstat (limited to 'src/udp_wrap.cc')
-rw-r--r-- | src/udp_wrap.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/udp_wrap.cc b/src/udp_wrap.cc index 7a2334e12b..8b4343834e 100644 --- a/src/udp_wrap.cc +++ b/src/udp_wrap.cc @@ -66,8 +66,6 @@ UDPWrap::~UDPWrap() { void UDPWrap::Initialize(Handle<Object> target) { - HandleWrap::Initialize(target); - HandleScope scope(node_isolate); buffer_sym = String::New("buffer"); |