Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_crypto.h')
-rw-r--r--src/node_crypto.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/node_crypto.h b/src/node_crypto.h
index 414261effe0..90483b7dbf1 100644
--- a/src/node_crypto.h
+++ b/src/node_crypto.h
@@ -274,12 +274,6 @@ class Connection : public SSLWrap<Connection>, public WeakObject {
void ClearError();
void SetShutdownFlags();
- static Connection* Unwrap(v8::Local<v8::Object> object) {
- Connection* conn = UnwrapObject<Connection>(object);
- conn->ClearError();
- return conn;
- }
-
Connection(Environment* env,
v8::Local<v8::Object> wrap,
SecureContext* sc,