Skip to content

Commit

Permalink
src: remove unused method in env.h
Browse files Browse the repository at this point in the history
Signed-off-by: gengjiawen <technicalcute@gmail.com>

PR-URL: #25934
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
gengjiawen authored and lpinca committed Feb 9, 2019
1 parent bb11c25 commit c2d374f
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 25 deletions.
19 changes: 0 additions & 19 deletions src/env.cc
Original file line number Diff line number Diff line change
Expand Up @@ -827,25 +827,6 @@ void CollectExceptionInfo(Environment* env,
}
}

void Environment::CollectExceptionInfo(Local<Value> object,
int errorno,
const char* syscall,
const char* message,
const char* path) {
if (!object->IsObject() || errorno == 0)
return;

Local<Object> obj = object.As<Object>();
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<Value> object,
int errorno,
const char* syscall,
Expand Down
6 changes: 0 additions & 6 deletions src/env.h
Original file line number Diff line number Diff line change
Expand Up @@ -747,12 +747,6 @@ class Environment {
inline performance::performance_state* performance_state();
inline std::unordered_map<std::string, uint64_t>* performance_marks();

void CollectExceptionInfo(v8::Local<v8::Value> context,
int errorno,
const char* syscall = nullptr,
const char* message = nullptr,
const char* path = nullptr);

void CollectUVExceptionInfo(v8::Local<v8::Value> context,
int errorno,
const char* syscall = nullptr,
Expand Down

0 comments on commit c2d374f

Please sign in to comment.