summaryrefslogtreecommitdiff
path: root/src/mongo/scripting/utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/scripting/utils.cpp')
-rw-r--r--src/mongo/scripting/utils.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mongo/scripting/utils.cpp b/src/mongo/scripting/utils.cpp
index f3ae976d019..0ba7e900bcb 100644
--- a/src/mongo/scripting/utils.cpp
+++ b/src/mongo/scripting/utils.cpp
@@ -21,8 +21,6 @@
namespace mongo {
- void installBenchmarkSystem( Scope& scope );
-
static BSONObj native_hex_md5( const BSONObj& args, void* data ) {
uassert( 10261,
"hex_md5 takes a single string argument -- hex_md5(string)",
@@ -61,8 +59,6 @@ namespace mongo {
scope.injectNative( "hex_md5" , native_hex_md5 );
scope.injectNative( "version" , native_version );
scope.injectNative( "sleep" , native_sleep );
-
- installBenchmarkSystem( scope );
}
}