Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-01-07 05:07:48 +0300
committerRyan Dahl <ry@tinyclouds.org>2011-01-07 05:07:50 +0300
commit08bec7ab0a9be15373d89492123b210fd0a05763 (patch)
tree26af3878d0ae1da4beeefdf6d2670fef44f29d34 /benchmark
parent5a05992155126cacb32181b15f39d4448b66f376 (diff)
Remove debugger statement from http_simple.js
results in slow bench
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/http_simple.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/benchmark/http_simple.js b/benchmark/http_simple.js
index 6d6b0d39c46..8d66190e0fb 100644
--- a/benchmark/http_simple.js
+++ b/benchmark/http_simple.js
@@ -43,7 +43,6 @@ var server = http.createServer(function (req, res) {
if (command == "bytes") {
var n = parseInt(arg, 10)
- debugger;
if (n <= 0)
throw "bytes called with n <= 0"
if (stored[n] === undefined) {