diff --git a/src/node_contextify.cc b/src/node_contextify.cc index 81d0388a35f390..b52062e72a4614 100644 --- a/src/node_contextify.cc +++ b/src/node_contextify.cc @@ -362,7 +362,6 @@ class ContextifyContext { Local property, const PropertyCallbackInfo& args) { Isolate* isolate = args.GetIsolate(); - HandleScope scope(isolate); ContextifyContext* ctx = Unwrap(args.Data().As()); @@ -387,7 +386,6 @@ class ContextifyContext { Local value, const PropertyCallbackInfo& args) { Isolate* isolate = args.GetIsolate(); - HandleScope scope(isolate); ContextifyContext* ctx = Unwrap(args.Data().As()); @@ -400,7 +398,6 @@ class ContextifyContext { Local property, const PropertyCallbackInfo& args) { Isolate* isolate = args.GetIsolate(); - HandleScope scope(isolate); ContextifyContext* ctx = Unwrap(args.Data().As()); @@ -422,7 +419,6 @@ class ContextifyContext { Local property, const PropertyCallbackInfo& args) { Isolate* isolate = args.GetIsolate(); - HandleScope scope(isolate); ContextifyContext* ctx = Unwrap(args.Data().As()); @@ -435,8 +431,6 @@ class ContextifyContext { static void GlobalPropertyEnumeratorCallback( const PropertyCallbackInfo& args) { - HandleScope scope(args.GetIsolate()); - ContextifyContext* ctx = Unwrap(args.Data().As());