diff options
author | murgatroid99 <mlumish@google.com> | 2015-02-13 13:02:47 -0800 |
---|---|---|
committer | murgatroid99 <mlumish@google.com> | 2015-02-13 13:02:47 -0800 |
commit | 42683db2d89f30f2458b7689cd6b2be60b0a560b (patch) | |
tree | 2b4068ca5bc84cf0f03930b080e9465e33f8543e | |
parent | d3f9f9f5493710515d0a82b590261294bb966859 (diff) |
Removed debugging code
-rw-r--r-- | src/node/ext/call.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/node/ext/call.cc b/src/node/ext/call.cc index a2333fa426..9ed389f3bc 100644 --- a/src/node/ext/call.cc +++ b/src/node/ext/call.cc @@ -199,8 +199,6 @@ class SendMessageOp : public Op { } out->data.send_message = BufferToByteBuffer(value); Persistent<Value> handle; - Handle<Value> temp = NanNew<Object>(); - NanAssignPersistent(handle, temp); NanAssignPersistent(handle, value); resources->handles.push_back(unique_ptr<PersistentHolder>( new PersistentHolder(handle))); |