From c2d374fcccf04b6bf62acabe09647fb4fab2dab8 Mon Sep 17 00:00:00 2001 From: gengjiawen Date: Mon, 4 Feb 2019 19:54:30 +0800 Subject: src: remove unused method in env.h Signed-off-by: gengjiawen PR-URL: https://github.com/nodejs/node/pull/25934 Reviewed-By: Anna Henningsen Reviewed-By: James M Snell Reviewed-By: Luigi Pinca --- src/env.cc | 19 ------------------- src/env.h | 6 ------ 2 files changed, 25 deletions(-) (limited to 'src') diff --git a/src/env.cc b/src/env.cc index 2e0fa251b3..b107a17aaf 100644 --- a/src/env.cc +++ b/src/env.cc @@ -827,25 +827,6 @@ void CollectExceptionInfo(Environment* env, } } -void Environment::CollectExceptionInfo(Local object, - int errorno, - const char* syscall, - const char* message, - const char* path) { - if (!object->IsObject() || errorno == 0) - return; - - Local obj = object.As(); - const char* err_string = errors::errno_string(errorno); - - if (message == nullptr || message[0] == '\0') { - message = strerror(errorno); - } - - node::CollectExceptionInfo(this, obj, errorno, err_string, - syscall, message, path, nullptr); -} - void Environment::CollectUVExceptionInfo(Local object, int errorno, const char* syscall, diff --git a/src/env.h b/src/env.h index 40bd0797a2..52d0535721 100644 --- a/src/env.h +++ b/src/env.h @@ -747,12 +747,6 @@ class Environment { inline performance::performance_state* performance_state(); inline std::unordered_map* performance_marks(); - void CollectExceptionInfo(v8::Local context, - int errorno, - const char* syscall = nullptr, - const char* message = nullptr, - const char* path = nullptr); - void CollectUVExceptionInfo(v8::Local context, int errorno, const char* syscall = nullptr, -- cgit v1.2.3