From 015ed0b1d7c3deb3a338e7d30387ee0adb917a40 Mon Sep 17 00:00:00 2001 From: gengjiawen Date: Thu, 31 Jan 2019 20:49:45 +0800 Subject: [PATCH] src: remove redundant method in node_worker.h Signed-off-by: gengjiawen PR-URL: https://github.com/nodejs/node/pull/25849 Reviewed-By: Anna Henningsen Reviewed-By: Colin Ihrig Reviewed-By: James M Snell --- src/node_worker.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/node_worker.h b/src/node_worker.h index dd054ac38d5f76..5ba9ceade3dc6b 100644 --- a/src/node_worker.h +++ b/src/node_worker.h @@ -44,7 +44,6 @@ class Worker : public AsyncWrap { static void New(const v8::FunctionCallbackInfo& args); static void StartThread(const v8::FunctionCallbackInfo& args); static void StopThread(const v8::FunctionCallbackInfo& args); - static void GetMessagePort(const v8::FunctionCallbackInfo& args); static void Ref(const v8::FunctionCallbackInfo& args); static void Unref(const v8::FunctionCallbackInfo& args);