diff options
author | Trevor Norris <trev.norris@gmail.com> | 2013-10-29 13:09:52 -0700 |
---|---|---|
committer | Trevor Norris <trev.norris@gmail.com> | 2013-10-29 15:09:44 -0700 |
commit | f2e3be53bc33fc9269c248cec4ac26d6ec9054f7 (patch) | |
tree | 544ee459002a8fc1c8f3dccb2ff2025959fdd82b /src/pipe_wrap.cc | |
parent | 60a3e695cb6ff09f81de4195368535fdb11e2da9 (diff) | |
download | node-new-f2e3be53bc33fc9269c248cec4ac26d6ec9054f7.tar.gz |
src: don't use class specific Unwrap methods
Instead use the template functions in util.h.
Diffstat (limited to 'src/pipe_wrap.cc')
-rw-r--r-- | src/pipe_wrap.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/pipe_wrap.cc b/src/pipe_wrap.cc index 4b195fda4a..5e8fc5ea9b 100644 --- a/src/pipe_wrap.cc +++ b/src/pipe_wrap.cc @@ -69,11 +69,6 @@ Local<Object> PipeWrap::Instantiate(Environment* env) { } -PipeWrap* PipeWrap::Unwrap(Local<Object> obj) { - return UnwrapObject<PipeWrap>(obj); -} - - void PipeWrap::Initialize(Handle<Object> target, Handle<Value> unused, Handle<Context> context) { |