src: remove unused comment
authorTrevor Norris <trev.norris@gmail.com>
Wed, 22 May 2013 23:09:06 +0000 (16:09 -0700)
committerTrevor Norris <trev.norris@gmail.com>
Wed, 22 May 2013 23:09:06 +0000 (16:09 -0700)
Now that Context::New(Isolate*) returns Local, the removed comment is
no longer applicable that there is a Persistent which will need to be
disposed.

src/node_script.cc

index 65561ae..9c83c39 100644 (file)
@@ -382,10 +382,6 @@ Handle<Value> WrappedScript::EvalMachine(const Arguments& args) {
   Local<Array> keys;
   if (context_flag == newContext) {
     // Create the new context
-    // Context::New returns a Persistent<Context>, but we only need it for this
-    // function. Here we grab a temporary handle to the new context, assign it
-    // to a local handle, and then dispose the persistent handle. This ensures
-    // that when this function exits the context will be disposed.
     context = Context::New(node_isolate);
 
   } else if (context_flag == userContext) {