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:
authorMarianneDr <marianne.drysdale@duke.edu>2018-10-12 20:37:02 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2018-10-15 13:00:00 +0300
commit0d6f0143901ca95f53f8d9e4bc03649595f4405d (patch)
tree07890970b793cfa73626932e26d6876f0f4acdc5 /src/udp_wrap.cc
parent2d76dec4b47e515238173516ac2667f414315b49 (diff)
src: remove unused UVHandle methods
PR-URL: https://github.com/nodejs/node/pull/23535 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/udp_wrap.cc')
-rw-r--r--src/udp_wrap.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/udp_wrap.cc b/src/udp_wrap.cc
index 92fc036778f..aa29f6973e3 100644
--- a/src/udp_wrap.cc
+++ b/src/udp_wrap.cc
@@ -27,8 +27,6 @@
#include "req_wrap-inl.h"
#include "util-inl.h"
-
-
namespace node {
using v8::Array;
@@ -526,11 +524,6 @@ Local<Object> UDPWrap::Instantiate(Environment* env,
}
-uv_udp_t* UDPWrap::UVHandle() {
- return &handle_;
-}
-
-
} // namespace node
NODE_MODULE_CONTEXT_AWARE_INTERNAL(udp_wrap, node::UDPWrap::Initialize)