summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripting/v8_utils.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripting/v8_utils.cpp b/scripting/v8_utils.cpp
index 48b86976b7d..3229508f0c4 100644
--- a/scripting/v8_utils.cpp
+++ b/scripting/v8_utils.cpp
@@ -55,7 +55,7 @@ namespace mongo {
stringstream ss;
- while ( try_catch ){
+ //while ( try_catch ){
v8::String::Utf8Value exception(try_catch->Exception());
Handle<v8::Message> message = try_catch->Message();
@@ -83,8 +83,8 @@ namespace mongo {
ss << endl;
}
- try_catch = try_catch->next_;
- }
+ //try_catch = try_catch->next_;
+ //}
return ss.str();
}
@@ -124,8 +124,8 @@ namespace mongo {
cout << endl;
}
- if ( try_catch->next_ )
- s << try_catch->next_;
+ //if ( try_catch->next_ )
+ // s << try_catch->next_;
return s;
}