From 04546333b65eb7365ec4ea81bd17caddcd2a4d7b Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 14 May 2009 18:18:16 -0400 Subject: [PATCH] spam MINOR --- scripting/engine_spidermonkey.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripting/engine_spidermonkey.cpp b/scripting/engine_spidermonkey.cpp index 03dba553b5f..3f4215a7b5b 100644 --- a/scripting/engine_spidermonkey.cpp +++ b/scripting/engine_spidermonkey.cpp @@ -585,7 +585,6 @@ namespace mongo { _context = JS_NewContext( globalSMEngine->_runtime , 8192 ); _convertor = new Convertor( _context ); massert( "JS_NewContext failed" , _context ); -// JS_BeginRequest( _context ); JS_SetOptions( _context , JSOPTION_VAROBJFIX); //JS_SetVersion( _context , JSVERSION_LATEST); TODO @@ -614,7 +613,6 @@ namespace mongo { } if ( _context ){ -// JS_EndRequest( _context ); JS_DestroyContext( _context ); _context = 0; }